# HG changeset patch # User anoop # Date 1275572311 -19800 # Node ID 48a86d8956f70b03b9423d8628b938fd436046a1 # Parent 212fcba4459e591c53c72d308cefa396d62c6d28 added base.html and did needed changes, (forgot to add files in previous commit). diff -r 212fcba4459e -r 48a86d8956f7 django.wsgi --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/django.wsgi Thu Jun 03 19:08:31 2010 +0530 @@ -0,0 +1,10 @@ +import os +import sys + +sys.path.append('/var/www/html') + +os.environ['DJANGO_SETTINGS_MODULE'] = 'sage_days.settings' + +import django.core.handlers.wsgi +application = django.core.handlers.wsgi.WSGIHandler() + diff -r 212fcba4459e -r 48a86d8956f7 templates/base.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/base.html Thu Jun 03 19:08:31 2010 +0530 @@ -0,0 +1,153 @@ + + + {% block title %}SAGE DAYS 25, India{% endblock %} + {% block js_script %} {% endblock %} + + + + +
+ +
+
+ +
+
+ {% block content %}This is the default content{% endblock %} +
+ +
+
+
+ +
+ + + diff -r 212fcba4459e -r 48a86d8956f7 templates/index.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/index.html Thu Jun 03 19:08:31 2010 +0530 @@ -0,0 +1,8 @@ +{% extends 'base.html' %} +{% block content %} + +

+For registration click here

+

+ +{% endblock %}