From e443dfe0b07790de1953be4b7d231e1239931786 Mon Sep 17 00:00:00 2001 From: Jayaram R Pai Date: Mon, 20 Oct 2014 17:17:05 +0530 Subject: added poster page --- static/website/templates/poster.html | 5 +++++ static/website/templates/sponsors.html | 2 -- website/urls.py | 1 + website/views.py | 3 +++ 4 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 static/website/templates/poster.html diff --git a/static/website/templates/poster.html b/static/website/templates/poster.html new file mode 100644 index 0000000..667f18c --- /dev/null +++ b/static/website/templates/poster.html @@ -0,0 +1,5 @@ +{% extends 'website/templates/base.html' %} + +{% block content %} +

Will be updated soon...

+{% endblock %} diff --git a/static/website/templates/sponsors.html b/static/website/templates/sponsors.html index 886e550..d5c3e6c 100644 --- a/static/website/templates/sponsors.html +++ b/static/website/templates/sponsors.html @@ -43,8 +43,6 @@

Annual SciPy India conference is organized by the team members of FOSSEE project. - For any queries you may writes us at - info [at] fossee [dot] in. FOSSEE project is part of the National Mission on Education through ICT with the thrust area being "Adaptation and deployment of open source simulation packages diff --git a/website/urls.py b/website/urls.py index e65cb69..be79560 100644 --- a/website/urls.py +++ b/website/urls.py @@ -13,4 +13,5 @@ urlpatterns = patterns('', url(r'^invited-speakers/$', 'website.views.invited_speakers', name='invited_speakers'), url(r'^call-for-proposals/$', 'website.views.call_for_proposals', name='call_for_proposals'), url(r'^call-for-proposals/(?P[^/]+)$', 'website.views.call_for_proposals', name='call_for_proposals'), + url(r'^poster/$', 'website.views.poster', name='poster'), ) + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) diff --git a/website/views.py b/website/views.py index 359eec3..ea9bd47 100644 --- a/website/views.py +++ b/website/views.py @@ -102,3 +102,6 @@ def call_for_proposals(request, action=None): context['register_form'] = UserRegisterForm() context.update(csrf(request)) return render(request, 'website/templates/call-for-proposals.html', context) + +def poster(request): + return render(request, 'website/templates/poster.html') -- cgit