diff options
author | Alwin1847207 | 2019-10-03 13:51:25 +0530 |
---|---|---|
committer | Alwin1847207 | 2019-10-03 13:51:25 +0530 |
commit | 055efb407c3b265ffbc2ed47f1f0b5d1a29b6391 (patch) | |
tree | b8c8b3d1255dec1c68714b98c431df66b2d8e990 /fossee_manim/urls.py | |
parent | ab16ecbb34d5b301d86a33f4d019b25de261f6cf (diff) | |
download | FOSSEE_animations-055efb407c3b265ffbc2ed47f1f0b5d1a29b6391.tar.gz FOSSEE_animations-055efb407c3b265ffbc2ed47f1f0b5d1a29b6391.tar.bz2 FOSSEE_animations-055efb407c3b265ffbc2ed47f1f0b5d1a29b6391.zip |
Enable deleting test proposals by reviewer
Diffstat (limited to 'fossee_manim/urls.py')
-rw-r--r-- | fossee_manim/urls.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fossee_manim/urls.py b/fossee_manim/urls.py index dac61e2..1947cba 100644 --- a/fossee_manim/urls.py +++ b/fossee_manim/urls.py @@ -34,6 +34,8 @@ urlpatterns = [ url(r'^libraryCS/$',views.libraryCS, name='libraryCS'), url(r'^explore/(?P<category>.+)$', views.explore, name='explore'), + url(r'^delete_proposal/([1-9][0-9]*)$',views.delete_proposal,name='delete_proposal'), + url(r'^delete_proposal_info/([1-9][0-9]*)$',views.delete_proposal_info,name='delete_proposal_info'), ] urlpatterns += static( |