silly - add logos
This commit is contained in:
parent
5b8b7c7d37
commit
d548c3b772
|
@ -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)]
|
||||
}
|
||||
|
||||
|
|
BIN
itf/static/images/logos/Hivos.jpg
Normal file
BIN
itf/static/images/logos/Hivos.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
BIN
itf/static/images/logos/Indigo.jpg
Normal file
BIN
itf/static/images/logos/Indigo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
BIN
itf/static/images/logos/MMB.jpg
Normal file
BIN
itf/static/images/logos/MMB.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 67 KiB |
|
@ -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> -->
|
||||
|
|
Loading…
Reference in New Issue
Block a user