diff options
author | Gabriel RodrÃguez Alberich | 2022-12-17 01:06:29 +0100 |
---|---|---|
committer | GitHub | 2022-12-16 17:06:29 -0700 |
commit | fb2eea956ef7416eb755ebecf58db7f9a57215c4 (patch) | |
tree | 0ca587705b99d7caab12bdb3557874c8c41e8356 /takahe | |
parent | 45c6978bc397691b22db0360b16b19979eac7dce (diff) | |
download | takahe-fb2eea956ef7416eb755ebecf58db7f9a57215c4.tar.gz takahe-fb2eea956ef7416eb755ebecf58db7f9a57215c4.tar.bz2 takahe-fb2eea956ef7416eb755ebecf58db7f9a57215c4.zip |
Several pagination improvements (#170)
Home/Notification gets pagination, Follows becomes ListView
Diffstat (limited to 'takahe')
-rw-r--r-- | takahe/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/takahe/urls.py b/takahe/urls.py index 1e02622..07ccc50 100644 --- a/takahe/urls.py +++ b/takahe/urls.py @@ -22,7 +22,7 @@ urlpatterns = [ path("explore/tags/", explore.ExploreTag.as_view(), name="explore-tag"), path( "follows/", - follows.FollowsPage.as_view(), + follows.Follows.as_view(), name="follows", ), # Settings views |