upgrade packages

This commit is contained in:
Aaron Gutierrez
2019-01-27 00:29:32 +00:00
parent 2dee669507
commit ac7afddaab
7 changed files with 48 additions and 43 deletions

View File

@@ -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'),
]