Added paths for live, and collections

This commit is contained in:
Raelon Masters
2020-07-25 14:52:49 -04:00
parent d71fdfb0b1
commit 617a8199c5

View File

@@ -25,6 +25,7 @@ urlpatterns = [
path("admin/", admin.site.urls),
path("", views.index, name="index"),
path("home", views.home, name="home"),
re_path("^live", views.live, name="liverequest"),
path("sort/<_order>", views.index, name="index"),
path("flip_sort/<_order>", views.flip_sort, name="index"),
path("download/<pk>", views.download, name="download"),
@@ -37,7 +38,8 @@ urlpatterns = [
path("search/", views.index, name="search"),
path("search/<query>", views.index, name="search"),
path("search/<query>/<_set>", views.index, name="search"),
path("show_collection/<_collection>/<_colset>", views.show_collection, name="show_collection"),
path("collections", views.collectionspage, name="collections"),
path("show_collection/<query>/<_set>", views.show_collection, name="show_collection"),
path("signup", views.signup, name="signup"),
path("login", views.userlogin, name="login"),
path('logout', views.userlogout, name='logout'),