charasheet/src/character/urls.py

10 lines
247 B
Python
Raw Normal View History

2022-10-30 10:12:49 +01:00
from django.urls import path
from character import views
app_name = "character"
2022-10-30 17:37:09 +01:00
urlpatterns = [
path("<int:pk>/", views.character_view, name="view"),
path("<int:pk>/health_change", views.character_health_change, name="health_change"),
]