From 4972ae760ff28e451a5c6277539a7333e742ba94 Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Wed, 10 Sep 2014 17:52:27 +0530 Subject: added registration page --- static/website/templates/base.html | 8 ++++---- static/website/templates/contact.html | 7 ++++--- static/website/templates/home.html | 4 ++-- static/website/templates/register.html | 16 ++++++++++++++++ static/website/templates/venue.html | 7 +++++-- website/urls.py | 1 + website/views.py | 3 +++ 7 files changed, 35 insertions(+), 11 deletions(-) create mode 100644 static/website/templates/register.html diff --git a/static/website/templates/base.html b/static/website/templates/base.html index 2a7e5c3..cced7aa 100755 --- a/static/website/templates/base.html +++ b/static/website/templates/base.html @@ -36,7 +36,7 @@
For any queries regarding registration, accomodation or any other issues, please feel free to contact us.
-FOSSEE (cfd-lab) @@ -30,7 +31,7 @@ |
Alternatively you may write us on
diff --git a/static/website/templates/home.html b/static/website/templates/home.html
index e2136c8..3871b34 100755
--- a/static/website/templates/home.html
+++ b/static/website/templates/home.html
@@ -36,7 +36,7 @@
Scipy India 2014Dec 5th and 6th IIT Bombay- Register Now + Register Now diff --git a/static/website/templates/register.html b/static/website/templates/register.html new file mode 100644 index 0000000..5a49505 --- /dev/null +++ b/static/website/templates/register.html @@ -0,0 +1,16 @@ +{% extends 'website/templates/base.html' %} + +{% block sidebar %} +{% endblock %} + +{% block current %} +Register +{% endblock %} + +{% block content %} +
+
+{% endblock %}
diff --git a/static/website/templates/venue.html b/static/website/templates/venue.html
index b7e64a1..5e1935c 100644
--- a/static/website/templates/venue.html
+++ b/static/website/templates/venue.html
@@ -3,9 +3,12 @@
{% block sidebar %}
{% endblock %}
+{% block current %}
+Venue
+{% endblock %}
+
{% block content %}
+ We will soon start registration for the conference. Stay tuned with us !! ++
-
-
+
{% endblock %}
diff --git a/website/urls.py b/website/urls.py
index 4b212e6..b6d8244 100644
--- a/website/urls.py
+++ b/website/urls.py
@@ -5,4 +5,5 @@ urlpatterns = patterns('',
url(r'^page/$', 'website.views.page', name='page'),
url(r'^venue/$', 'website.views.venue', name='venue'),
url(r'^contact/$', 'website.views.contact', name='contact'),
+ url(r'^register/$', 'website.views.register', name='register'),
)
diff --git a/website/views.py b/website/views.py
index 24ca6ad..4f66a21 100644
--- a/website/views.py
+++ b/website/views.py
@@ -14,3 +14,6 @@ def venue(request):
def contact(request):
return render(request, 'website/templates/contact.html')
+
+def register(request):
+ return render(request, 'website/templates/register.html')
--
cgit
|