mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-07 02:48:27 +02:00
Implement basic bookmark page
This commit is contained in:
10
bookmarks/urls.py
Normal file
10
bookmarks/urls.py
Normal 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'),
|
||||
]
|
Reference in New Issue
Block a user