lib.itmens/journal/urls.py

17 lines
685 B
Python
Raw Normal View History

2022-12-21 14:34:36 -05:00
from django.urls import path, re_path
from .views import *
app_name = 'journal'
urlpatterns = [
path('wish/<str:item_uuid>', wish, name='wish'),
path('like/<str:piece_uuid>', like, name='like'),
2022-12-23 00:08:42 -05:00
path('mark/<str:item_uuid>', mark, name='mark'),
path('add_to_collection/<str:item_uuid>', add_to_collection, name='add_to_collection'),
2022-12-24 01:28:24 -05:00
2022-12-25 13:45:24 -05:00
path('review/<str:review_uuid>', review_retrieve, name='review_retrieve'),
path('review/create/<str:item_uuid>/', review_edit, name='review_create'),
path('review/edit/<str:item_uuid>/<str:review_uuid>', review_edit, name='review_edit'),
path('review/delete/<str:review_uuid>', review_delete, name='review_delete'),
2022-12-21 14:34:36 -05:00
]