mirror of
https://gitlab.science.ru.nl/technicie/MarietjeDjango.git
synced 2025-12-09 17:52:21 +01:00
12 lines
289 B
Python
12 lines
289 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "songs"
|
|
|
|
urlpatterns = [
|
|
path("upload/", views.UploadView.as_view(), name="upload"),
|
|
path("manage/", views.ManageView.as_view(), name="manage"),
|
|
path("edit/<int:song_id>/", views.EditView.as_view(), name="edit"),
|
|
]
|