37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block navigation %}
|
|
<ul id="navigation">
|
|
{% if event %}
|
|
<li><a href="{{ current_top_page.get_absolute_url }}">{{current_top_page.menu_name}}</a></li>
|
|
<li><a class="active">{{event.name}}</a></li>
|
|
{% elif photo %}
|
|
<li><a href="{{ current_top_page.get_absolute_url }}">{{current_top_page.menu_name}}</a></li>
|
|
<li><a href="{% url 'event-photo-list' photo.event.id %}">{{photo.event.name}}</a></li>
|
|
<li><a class="active">{{photo.name}}</a></li>
|
|
{% else %}
|
|
<li><a href="{{ current_top_page.get_absolute_url }}" {% ifequal current_page current_top_page %}class="active"{% endifequal %}>{{current_top_page.menu_name}}</a></li>
|
|
{% if perms.event.add_photo %}
|
|
<li><a href="/gallery/upload/" {% ifequal current_path 'gallery/upload' %}class="active"{% endifequal %}>{% trans 'Upload' %}</a></li>
|
|
{% endif %}
|
|
{% endif %}
|
|
</ul>
|
|
{% endblock %}
|
|
|
|
{% block maincontent %}
|
|
<h2 class="grid_12">{% trans 'Photos' %}</h2>
|
|
{% for event in event_list %}
|
|
<div class="gallery grid_4">
|
|
<h3><a href="{% url 'event-photo-list' event.id %}">{{event.name}}</a></h3>
|
|
<a href="{% url 'event-photo-list' event.id %}"><img src="{{event.get_thumbnail.url}}" class="thumbnail"/></a>
|
|
</div>
|
|
{% empty %}
|
|
<p>Sorry da kommt erst was hin!</p>
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|
|
{% block buttonbar %}{% endblock %}
|
|
|
|
|