templates/index.html
author nishanth
Thu, 15 Apr 2010 16:01:03 +0530
changeset 47 e1895d2ede97
parent 34 c12a0b773720
child 48 9a52ca561c1d
permissions -rw-r--r--
now registered workshops appear on home page .
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     1
{% extends "base.html" %}
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
     2
{% block content %}
26
9d18daf5277f now the "you must register" link appears on view event page .
nishanth
parents: 19
diff changeset
     3
	{% if not user.is_authenticated %}
9d18daf5277f now the "you must register" link appears on view event page .
nishanth
parents: 19
diff changeset
     4
		Welcome Guest.<br />
9d18daf5277f now the "you must register" link appears on view event page .
nishanth
parents: 19
diff changeset
     5
		<br />
9d18daf5277f now the "you must register" link appears on view event page .
nishanth
parents: 19
diff changeset
     6
		You can know about workshops by clicking on workshops link on the left.<br />		
9d18daf5277f now the "you must register" link appears on view event page .
nishanth
parents: 19
diff changeset
     7
	{% else %}
9d18daf5277f now the "you must register" link appears on view event page .
nishanth
parents: 19
diff changeset
     8
		Welcome {{user.get_full_name}}<br />
9d18daf5277f now the "you must register" link appears on view event page .
nishanth
parents: 19
diff changeset
     9
	{% endif %}
47
e1895d2ede97 now registered workshops appear on home page .
nishanth
parents: 34
diff changeset
    10
	
e1895d2ede97 now registered workshops appear on home page .
nishanth
parents: 34
diff changeset
    11
	{% if user.is_active and registered_events %}
e1895d2ede97 now registered workshops appear on home page .
nishanth
parents: 34
diff changeset
    12
		Workshops you have registered for:
e1895d2ede97 now registered workshops appear on home page .
nishanth
parents: 34
diff changeset
    13
		<ul>
e1895d2ede97 now registered workshops appear on home page .
nishanth
parents: 34
diff changeset
    14
		{% for a_event in registered_events %}
e1895d2ede97 now registered workshops appear on home page .
nishanth
parents: 34
diff changeset
    15
			<li><a href="/reg/event/view/{{a_event.key}}">{{a_event.title}}</a></li>
e1895d2ede97 now registered workshops appear on home page .
nishanth
parents: 34
diff changeset
    16
		{% endfor %}
e1895d2ede97 now registered workshops appear on home page .
nishanth
parents: 34
diff changeset
    17
		</ul>
e1895d2ede97 now registered workshops appear on home page .
nishanth
parents: 34
diff changeset
    18
	{% endif %}
e1895d2ede97 now registered workshops appear on home page .
nishanth
parents: 34
diff changeset
    19
	
18
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents: 14
diff changeset
    20
	{% if user.is_staff %}
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents: 14
diff changeset
    21
		<a href="/reg/event/create">Create an event</a><br />	
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents: 14
diff changeset
    22
	{% endif %}
14
cd6911eaac2c moved templates into templates directory and added user in context .
nishanth
parents:
diff changeset
    23
{% endblock %}