49 lines
1.9 KiB
HTML
Executable File
49 lines
1.9 KiB
HTML
Executable File
{% extends 'festival_wireframe.html' %}
|
|
|
|
{% block title %}
|
|
India Theatre Forum - Activities
|
|
{% endblock %}
|
|
|
|
{% block extra_head %}
|
|
<link type="text/css" rel="stylesheet" href="/static/css/meetings.css" />
|
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block leftCol %}
|
|
<ul id="leftNav">
|
|
<li><a href="/itf/">Home</a></li>
|
|
<li class="currentNav"><a href="/itf/meetings">Activities</a><div class="helper">ITF Meetings - transcripts, audio, discussions.</div></li>
|
|
<li><a href="/itf/projects">Projects</a><div class="helper">Projects undertaken by the ITF...</div></li>
|
|
<li><a href="/erang">e-Rang</a><div class="helper">The theatre newsletter...</div></li>
|
|
<li><a href="/itf/resources">Resources</a><div class="helper">Downloadable reading materials and resources</div></li>
|
|
<li><a href="/itf/surveys">Surveys</a><div class="helper">Surveys about theatre in India...</div></li>
|
|
<li><a href="/itf/publications">Publications</a><div class="helper">Publications by the ITF..</div></li>
|
|
<li><a href="/itf/people">Participants</a><div class="helper">A list of participants for all ITF meetings</div></li>
|
|
<li><a href="/itf/bestpractices">Best Practices</a><div class="helper">Best Practices publication</div></li>
|
|
</ul>
|
|
{% endblock %}
|
|
|
|
{% block centerCol %}
|
|
<div id="centerContent">
|
|
<h3>Activities</h3>
|
|
<div class="centerText">
|
|
{% for m in meetings %}
|
|
<div class="objWrapper">
|
|
<div class="titleLink">
|
|
<a href="/itf/meeting/{{m.id}}/">{{m.title}} ({{ m.start_date|date:"d M Y" }}{% ifnotequal m.start_date m.end_date %} - {{ m.end_date|date:"d M Y" }} {% endifnotequal %})</a>
|
|
</div>
|
|
<div class="intro">
|
|
{{ m.intro }} <span class="more"><a href="/itf/meeting/{{m.id}}/">more >>></a></span>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|