templates/list_events.html
author nishanth
Fri, 16 Apr 2010 15:07:17 +0530
changeset 70 6a00612fce5c
parent 69 b977321ccf6c
child 71 1f6a101586b7
permissions -rw-r--r--
changed font size for table in list events.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
     1
{% extends "base.html" %}
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
     2
{% block content %}
70
6a00612fce5c changed font size for table in list events.
nishanth
parents: 69
diff changeset
     3
<font size="14px">
18
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
     4
	{% if ongoing_events %}
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
     5
		Ongoing Workshops:
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
     6
		<table cellspacing=5 cellpadding=5>
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
     7
		{% for event in ongoing_events %}
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
     8
			<tr>
69
b977321ccf6c changed the alignment in list events and font size in base.
nishanth
parents: 59
diff changeset
     9
				<td  align="center"><a href="/reg/event/view/{{event.key}}">{{event.title}} at {{event.venue}}</a></td>
18
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    10
				<td>{{event.start_date|date:"d M Y"}} - {{event.stop_date|date:"d M Y"}}</td>
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    11
			</tr>
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    12
		{% endfor %}
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    13
		</table>
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    14
	{% endif %}
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    15
	
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    16
	{% if upcoming_events %}
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    17
		Upcoming Workshops:
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    18
		<table cellspacing=5 cellpadding=5>
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    19
		{% for event in upcoming_events %}
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    20
			<tr>
69
b977321ccf6c changed the alignment in list events and font size in base.
nishanth
parents: 59
diff changeset
    21
				<td  align="center"><a href="/reg/event/view/{{event.key}}">{{event.title}} at {{event.venue}}</a></td>
18
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    22
				<td>{{event.start_date|date:"d M Y"}} - {{event.stop_date|date:"d M Y"}}</td>
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    23
			</tr>
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    24
		{% endfor %}
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    25
		</table>
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    26
	{% endif %}
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    27
	
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    28
	<br />
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    29
	
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    30
	{% if previous_events %}
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    31
		Previous Workshops:
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    32
		<table cellspacing=5 cellpadding=5>
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    33
		{% for event in previous_events %}
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    34
			<tr>
69
b977321ccf6c changed the alignment in list events and font size in base.
nishanth
parents: 59
diff changeset
    35
				<td  align="center"><a href="/reg/event/view/{{event.key}}">{{event.title}} at {{event.venue}}</a></td>
18
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    36
				<td>{{event.start_date|date:"d M Y"}} - {{event.stop_date|date:"d M Y"}}</td>
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    37
			</tr>
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    38
		{% endfor %}
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    39
		</table>
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    40
	{% endif %}
70
6a00612fce5c changed font size for table in list events.
nishanth
parents: 69
diff changeset
    41
</font>
18
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    42
{% endblock %}
7dae32a2439b prettified the home page and moved workshops to another page called workshops.
nishanth
parents:
diff changeset
    43