Implement bulk edit (#101)

This commit is contained in:
Sascha Ißbrücker
2021-03-29 00:43:50 +02:00
committed by GitHub
parent 2e4f271490
commit 0c1c21c8d1
26 changed files with 915 additions and 88 deletions

View File

@@ -18,6 +18,7 @@ urlpatterns = [
path('bookmarks/<int:bookmark_id>/remove', views.bookmarks.remove, name='remove'),
path('bookmarks/<int:bookmark_id>/archive', views.bookmarks.archive, name='archive'),
path('bookmarks/<int:bookmark_id>/unarchive', views.bookmarks.unarchive, name='unarchive'),
path('bookmarks/bulkedit', views.bookmarks.bulk_edit, name='bulk_edit'),
# Settings
path('settings', views.settings.general, name='settings.index'),
path('settings/general', views.settings.general, name='settings.general'),