Directory view

This commit is contained in:
Mouse Reeve
2021-03-21 16:37:52 -07:00
parent 3e75253ff1
commit ba00672e66
9 changed files with 115 additions and 6 deletions

View File

@ -96,6 +96,7 @@ urlpatterns = [
path("", views.Home.as_view(), name="landing"),
re_path(r"^discover/?$", views.Discover.as_view()),
re_path(r"^notifications/?$", views.Notifications.as_view()),
re_path(r"^directory/?", views.Directory.as_view(), name="directory"),
# feeds
re_path(r"^(?P<tab>home|local|federated)/?$", views.Feed.as_view()),
re_path(