mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
11 lines
278 B
Python
11 lines
278 B
Python
|
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'),
|
||
|
]
|