mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-06 18:38:31 +02: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'),
|
|
]
|