nuitdelinfo_2021/rescue/urls.py

11 lines
280 B
Python
Raw Normal View History

2021-12-02 21:57:32 +01:00
from django.urls import path
from . import views
urlpatterns = [
2021-12-03 02:37:28 +01:00
path('', views.index, name='index'),
path('<int:rescue_id>/', views.details, name='details'),
2021-12-03 00:23:06 +01:00
path("submit/", views.submit, name="submit"),
path("edit/<int:rescue_id>/", views.edit, name="edit")
2021-12-02 21:57:32 +01:00
]