Solutions for MEIM
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

urls.py 458B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
1234567891011
  1. from . import views
  2. from django.urls import path, re_path
  3. urlpatterns = [
  4. # use re_path for regex (.*) - this regex accepts anything - see https://docs.python.org/3/library/re.html for more
  5. path('', views.home, name='index'),
  6. path('delete/<int:value>', views.delete, name='delete'),
  7. path('new', views.new, name='new'),
  8. path('notices/', views.notice_list, name='index'),
  9. path('notices/<int:id>', views.notice_detail, name='delete'),
  10. ]