diff options
author | Alwin1847207 | 2019-11-04 17:03:10 +0530 |
---|---|---|
committer | Alwin1847207 | 2019-11-04 17:03:10 +0530 |
commit | 7c650b158109a9d59882365d26f0327390268f13 (patch) | |
tree | 1140bf6b65c75b9b175adb08d9206104f60104a5 /fossee_manim/urls.py | |
parent | 9a63fcaff0974fa6401d48c5dae53782f50c4ddc (diff) | |
parent | cfdc41deed280bddbcc6c3cf45e30f33ea139e88 (diff) | |
download | FOSSEE_animations-7c650b158109a9d59882365d26f0327390268f13.tar.gz FOSSEE_animations-7c650b158109a9d59882365d26f0327390268f13.tar.bz2 FOSSEE_animations-7c650b158109a9d59882365d26f0327390268f13.zip |
removed merge conflicts
Diffstat (limited to 'fossee_manim/urls.py')
-rw-r--r-- | fossee_manim/urls.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/fossee_manim/urls.py b/fossee_manim/urls.py index 1947cba..d7b228b 100644 --- a/fossee_manim/urls.py +++ b/fossee_manim/urls.py @@ -26,12 +26,12 @@ 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'^delete_proposal/([1-9][0-9]*)$',views.delete_proposal,name='delete_proposal'), @@ -39,6 +39,6 @@ urlpatterns = [ ] urlpatterns += static( - settings.MEDIA_URL, - document_root=settings.MEDIA_ROOT + settings.MEDIA_URL, + document_root=settings.MEDIA_ROOT ) |