2021-12-08 12:05:05 +01:00

11 lines
311 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('edit', views.new, name='new'),
path('', views.index, name = 'index'),
path('delete/<int:deleteId>/', views.delete, name ='delete'),
path('notices/', views.notice_list),
path('notices/<int:id>/', views.notice_detail),
]