11 lines
352 B
Python
11 lines
352 B
Python
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'),
|
|
path('mark/<str:item_uuid>', mark, name='mark'),
|
|
path('add_to_collection/<str:item_uuid>', add_to_collection, name='add_to_collection'),
|
|
]
|