mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-04 22:03:56 +01:00
9 lines
247 B
Python
9 lines
247 B
Python
from django.urls import path
|
|
|
|
from character import views
|
|
|
|
app_name = "character"
|
|
urlpatterns = [
|
|
path("<int:pk>/", views.character_view, name="view"),
|
|
path("<int:pk>/health_change", views.character_health_change, name="health_change"),
|
|
]
|