2019-10-29 14:17:07 +01:00
|
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
|
|
|
|
urlpatterns = [
|
2019-11-26 14:46:59 +01:00
|
|
|
path('', views.index, name='posts'),
|
|
|
|
path('new', views.new, name='new'),
|
2019-12-03 12:42:20 +01:00
|
|
|
path('delete/<int:deleteId>', views.delete, name='delete'),
|
|
|
|
|
|
|
|
path('notices/', views.notice_list),
|
|
|
|
path('notices/<int:id>/', views.notice_detail),
|
2019-10-29 14:17:07 +01:00
|
|
|
]
|