From e79828295f686606145d0c5916759d8f0f447cb4 Mon Sep 17 00:00:00 2001
From: Anoop Jacob Thomas
Date: Thu, 21 Oct 2010 17:27:53 +0530
Subject: Added publicity page.
---
project/templates/_menu.html | 1 +
project/templates/about/publicity.html | 11 +++++++++++
project/urls.py | 3 +++
3 files changed, 15 insertions(+)
create mode 100644 project/templates/about/publicity.html
diff --git a/project/templates/_menu.html b/project/templates/_menu.html
index 5674bf2..6fc79e1 100644
--- a/project/templates/_menu.html
+++ b/project/templates/_menu.html
@@ -62,6 +62,7 @@
-->
+
Publicity
{% if user.is_staff %}
HowTo
{% endif %}
diff --git a/project/templates/about/publicity.html b/project/templates/about/publicity.html
new file mode 100644
index 0000000..71c6dea
--- /dev/null
+++ b/project/templates/about/publicity.html
@@ -0,0 +1,11 @@
+{% extends "base.html" %}
+{% block content %}
+Publicity Materials
+
+
+
Poster
+
+Download Poster
+
+
+{% endblock content %}
diff --git a/project/urls.py b/project/urls.py
index 2373b72..d98b84c 100644
--- a/project/urls.py
+++ b/project/urls.py
@@ -113,6 +113,9 @@ urlpatterns += patterns('',
url(r'^%s/talks-cfp/speakers/$' % (SCOPE_ARG_PATTERN),
direct_to_template, {"template": "talk/speakers.html"},
name='scipycon_speakers'),
+ url(r'^%s/publicity/$' % (SCOPE_ARG_PATTERN),
+ direct_to_template, {"template": "about/publicity.html"},
+ name='scipycon_publicity'),
)
# Password reset
--
cgit