Initial Commit
This commit is contained in:
commit
715224653d
58 changed files with 7760 additions and 0 deletions
10
gurps_character/urls.py
Normal file
10
gurps_character/urls.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path("", views.index, name="index"),
|
||||
path("details/<str:uuid>/", views.details, name="details"),
|
||||
path("upload", views.upload_file, name="upload"),
|
||||
path("download/<str:uuid>/", views.download, name="download"),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue