]> git.parisson.com Git - mezzo.git/commitdiff
Add the links to events
authorJérémy Fabre <Jeremy@iMac-de-Jeremy.local>
Wed, 28 Sep 2016 15:50:38 +0000 (17:50 +0200)
committerJérémy Fabre <Jeremy@iMac-de-Jeremy.local>
Wed, 28 Sep 2016 15:50:38 +0000 (17:50 +0200)
app/templates/agenda/event_detail.html

index 3f0c7b86efc511f56b2db19e5fd142c90e9e8b40..07ab6aeba816a6676c13b16d2d5c96868d777a85 100644 (file)
 
 {% endblock %}
 
+{% block page_link %}
+    {% with event.links.all as links %}
+        {% if links %}
+            {% include 'core/inc/link.html' %}
+        {% endif %}
+    {% endwith %}
+{% endblock %}
+
 {% block page_audio %}
     {% with event.audios.all as audios %}
         {% if audios %}
     {% endwith %}
 {% endblock %}
 
+{% block page_person_list %}
+    {% for page_custom_person_list_block_inline in event.persons.all  %}
+        <!-- TODO: Add persons -->
+    {% endfor %}
+{% endblock %}
+
 {% block page_sub_content %}
     {% with event.blocks.all as blocks %}
         {% include "core/inc/block.html" %}