diff options
Diffstat (limited to 'fossee_manim/urls.py')
-rw-r--r-- | fossee_manim/urls.py | 30 |
1 files changed, 22 insertions, 8 deletions
diff --git a/fossee_manim/urls.py b/fossee_manim/urls.py index dac61e2..f48a6c0 100644 --- a/fossee_manim/urls.py +++ b/fossee_manim/urls.py @@ -26,17 +26,31 @@ urlpatterns = [ url(r'^faqs/$', views.faqs, name='faqs'), url(r'^search_category/(?P<cat>.+)$', views.search_category, name='search_category'), - url(r'^about/$',views.about, name='about'), - url(r'^outreach/$',views.outreach, name='outreach'), - url(r'^library/$',views.library, name='library'), - url(r'^libraryMath/$',views.libraryMath, name='libraryMath'), - url(r'^libraryPhys/$',views.libraryPhys, name='libraryPhys'), - url(r'^libraryCS/$',views.libraryCS, name='libraryCS'), + url(r'^about/$', views.about, name='about'), + url(r'^outreach/$', views.outreach, name='outreach'), + url(r'^library/$', views.library, name='library'), + url(r'^libraryMath/$', views.libraryMath, name='libraryMath'), + url(r'^libraryPhys/$', views.libraryPhys, name='libraryPhys'), + url(r'^libraryCS/$', views.libraryCS, name='libraryCS'), url(r'^explore/(?P<category>.+)$', views.explore, name='explore'), + url(r'^show_proposal_detail/([1-9][0-9]*)$', views.show_proposal_detail, + name='show_proposal_detail'), + url(r'^delete_proposal/([1-9][0-9]*)$', views.delete_proposal, + name='delete_proposal'), + url(r'^sortproposal_released/$', views.sortproposal_released, + name='sortproposal_released'), + url(r'^sortproposal_rejected/$', views.sortproposal_rejected, + name='sortproposal_rejected'), + url(r'^sortproposal_changes/', views.sortproposal_changes, + name='sortproposal_changes'), + url(r'^sortproposal_pending/$', views.sortproposal_pending, + name='sortproposal_pending'), + url(r'^search_proposal/$', views.search_proposal, + name='search_proposal'), ] urlpatterns += static( - settings.MEDIA_URL, - document_root=settings.MEDIA_ROOT + settings.MEDIA_URL, + document_root=settings.MEDIA_ROOT ) |