toggle ascending/descending mode

This commit is contained in:
Raelon Masters
2020-07-06 02:37:35 -04:00
parent 6af7bb459a
commit 4079e04d9b
17 changed files with 147 additions and 211 deletions

View File

@@ -23,6 +23,7 @@ urlpatterns = [
path("", views.index, name="index"),
path("home", views.home, name="index"),
path("sort/<_order>", views.index, name="index"),
path("flip_sort/<_order>", views.flip_sort, name="index"),
path("download/<pk>", views.download, name="download"),
path("favorite/<pk>", views.favorite, name="favorite"),
path("share/<pk>", views.share, name="share"),