Implement basic bookmark page

This commit is contained in:
Sascha Ißbrücker
2019-06-27 08:09:51 +02:00
commit fc2794aa61
25 changed files with 567 additions and 0 deletions

10
bookmarks/urls.py Normal file
View File

@@ -0,0 +1,10 @@
from django.urls import path
from . import views
app_name = 'bookmarks'
urlpatterns = [
path('', views.index, name='index'),
path('bookmark/<int:bookmark_id>', views.detail, name='detail'),
path('bookmark/<int:bookmark_id>/remove', views.remove, name='remove'),
]