upgrade packages
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
from django.conf.urls import url
|
||||
from django.urls import path
|
||||
|
||||
from committee import views
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^$', views.edit, name='edit'),
|
||||
url(r'^update/(?P<committee>\d+)/$', views.update, name='update'),
|
||||
url(r'^fincom/$', views.add_to_fincom, name='add_to_fincom'),
|
||||
url(r'^fincom/delete$', views.remove_fincom, name='remove_fincom'),
|
||||
url(r'^new$', views.new_committee, name='new_committee'),
|
||||
path('', views.edit, name='edit'),
|
||||
path('update/<int:committee>/', views.update, name='update'),
|
||||
path('fincom/', views.add_to_fincom, name='add_to_fincom'),
|
||||
path('fincom/delete', views.remove_fincom, name='remove_fincom'),
|
||||
path('new', views.new_committee, name='new_committee'),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user