diff options
-rw-r--r-- | static/website/templates/poster.html | 5 | ||||
-rw-r--r-- | static/website/templates/sponsors.html | 2 | ||||
-rw-r--r-- | website/urls.py | 1 | ||||
-rw-r--r-- | website/views.py | 3 |
4 files changed, 9 insertions, 2 deletions
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 %} + <h3 class="garmond">Will be updated soon...</h3> +{% 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 @@ <p> Annual SciPy India conference is organized by the team members of <a href="http://fossee.in" target="_blank">FOSSEE</a> project. - For any queries you may writes us at - <a href="mailto:info@fossee.in">info [at] fossee [dot] in</a>. 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<action>[^/]+)$', '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') |