summaryrefslogtreecommitdiff
path: root/fossee_manim/urls.py
diff options
context:
space:
mode:
authorSharanya A2019-11-26 15:48:39 +0530
committerGitHub2019-11-26 15:48:39 +0530
commitc69720de4ea46628d81358b748daabf843c52357 (patch)
tree5044f017f777d8005fefb4985a17f4aaaec91117 /fossee_manim/urls.py
parentab16ecbb34d5b301d86a33f4d019b25de261f6cf (diff)
parentf2ac50021461637225c77f633c0818f100e87ed1 (diff)
downloadFOSSEE_animations-c69720de4ea46628d81358b748daabf843c52357.tar.gz
FOSSEE_animations-c69720de4ea46628d81358b748daabf843c52357.tar.bz2
FOSSEE_animations-c69720de4ea46628d81358b748daabf843c52357.zip
Merge pull request #57 from TEAMCHRIST/deleteproposalHEADmaster
- provide reviewers option to delete proposals - allow segregation of proposals based on their status - allow performing basic search on proposal_status page
Diffstat (limited to 'fossee_manim/urls.py')
-rw-r--r--fossee_manim/urls.py30
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
)