linkding/bookmarks/urls.py

11 lines
278 B
Python
Raw Normal View History

2019-06-27 06:09:51 +00:00
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'),
]