silly - add logos

This commit is contained in:
Sanj 2012-03-05 23:44:06 +05:30
parent 5b8b7c7d37
commit d548c3b772
5 changed files with 37 additions and 1 deletions

View File

@ -167,7 +167,8 @@ class MeetingPerformance(models.Model):
'director': self.director,
'language': self.language,
'synopsis': self.synopsis,
#'time': FIXME
'date': self.meeting_day.meeting_date,
'time': self.time,
'images': [i for i in MeetingPerformanceImage.objects.filter(performance=self)]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

View File

@ -23,9 +23,14 @@
{% ifnotequal participants|length 0 %}
<li><a href="#participants">Participants</a></li>
{% endifnotequal %}
{% comment %}
{% if meeting.register_form_embed %}
<li><a href="#register">Register</a></li>
{% endif %}
{% endcomment %}
{% if performances %}
<li><a href="#performances">Performances</a></li>
{% endif %}
<!-- <li><a href="#comments">Comments</a></li> -->
</ul>
@ -91,6 +96,36 @@
</div>
{% endifnotequal %}
{% if performances %}
<div id="performances" class="tab_content">
{% for p in performances %}
<div class="performanceTitle toggleNext"><a href="Javascript:return false;">{{ p.title }}</a></div>
<div class="performanceChild" style="display:none;">
{% if p.date %}
<div class="performanceTime">
Date: {{ p.date|date:"F j, Y" }} <br />
Time: {{ p.time|time:"H:i A" }}
</div>
{% endif %}
{% if p.performed_by %}
<div class="performanceGroup">
Group: {{ p.performed_by }}
</div>
{% endif %}
{% if p.director %}
<div class="performanceDirector">Directed by: {{ p.director }}</div>
{% endif %}
{% if p.language %}
<div class="performanceLanguage">Language: {{ p.language }}</div>
{% endif %}
{% if p.synopsis %}
<div class="performanceSynopsis">{{ p.synopsis }}</div>
{% endif %}
</div>
{% endfor %}
</div>
{% endif %}
{% ifnotequal documents|length 0%}
<div id="prereading" class="tab_content">
<!-- <h4 class="tabTitle">Reading Materials</h4> -->