summaryrefslogtreecommitdiff
path: root/fossee_manim/urls.py
diff options
context:
space:
mode:
authorAkshen2019-06-03 11:49:07 +0530
committerGitHub2019-06-03 11:49:07 +0530
commit242b5f0f208839a2d25b55d11bf73f647d9f5201 (patch)
tree11ebe0fe791e863d9dbc96701d448d1184b02cd9 /fossee_manim/urls.py
parentd6e8d4397a0ff3ea610c253e2648df257587f2bf (diff)
parentcfd45b327a621a6a118954f4b18f5f020720cd10 (diff)
downloadFOSSEE_animations-242b5f0f208839a2d25b55d11bf73f647d9f5201.tar.gz
FOSSEE_animations-242b5f0f208839a2d25b55d11bf73f647d9f5201.tar.bz2
FOSSEE_animations-242b5f0f208839a2d25b55d11bf73f647d9f5201.zip
Merge pull request #22 from Akshen/develop
Upload FileValidator added
Diffstat (limited to 'fossee_manim/urls.py')
-rw-r--r--fossee_manim/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/fossee_manim/urls.py b/fossee_manim/urls.py
index f3c65b6..6d24111 100644
--- a/fossee_manim/urls.py
+++ b/fossee_manim/urls.py
@@ -22,7 +22,8 @@ urlpatterns = [
url(r'^view_profile/$', views.view_profile, name='view_profile'),
url(r'^edit_profile/$', views.edit_profile, name='edit_profile'),
url(r'^video/([1-9][0-9]*)$', views.video, name='video'),
- url(r'^honorarium/([1-9][0-9]*)$', views.honorarium, name='honorarium'),
+ url(r'^honorarium/$', views.honorarium, name='honorarium'),
+ url(r'^faqs/$', views.faqs, name='faqs'),
url(r'^search_category/(?P<cat>.+)$', views.search_category,
name='search_category')
]