Implement archive view (#46)

This commit is contained in:
Sascha Ißbrücker
2021-02-14 11:21:05 +01:00
parent 256084f6cb
commit be7b92d608
6 changed files with 94 additions and 37 deletions

View File

@@ -11,6 +11,7 @@ urlpatterns = [
url(r'^$', RedirectView.as_view(pattern_name='bookmarks:index', permanent=False)),
# Bookmarks
path('bookmarks', views.bookmarks.index, name='index'),
path('bookmarks/archived', views.bookmarks.archived, name='archived'),
path('bookmarks/new', views.bookmarks.new, name='new'),
path('bookmarks/close', views.bookmarks.close, name='close'),
path('bookmarks/<int:bookmark_id>/edit', views.bookmarks.edit, name='edit'),