EVENT_PER_PAGE = 50
EVENT_USE_FEATURED_IMAGE = True
EVENT_SHOP_URL = 'http://eve.ircam.fr/manifeste.php/manifestation/'
+EVENT_PASS_URL = 'http://eve.ircam.fr/manifeste.php/pass/'
TINYMCE_SETUP_JS = "/static/js/tinymce_setup.js"
</div>
{% endif %}
-{% if event.videos.all %}}
+{% if event.videos.all %}
<h3 class="section__title">{% trans "Videos" %}</h3>
<div class="row">
{% for video in event.videos.all %}
{% if event.allow_comments %}{% comments_for event %}{% endif %}
{% endblock %}
+{% block ical %}
<a href='{% icalendar_url %}' target="_blank" class="small push-ical">{% trans "Subscribe to all events in" %} Google Calendar/Outlook/iCal</a>
+{% endblock %}
{% endblock %}
--- /dev/null
+{% extends "agenda/event_detail.html" %}
+{% load mezzanine_tags comment_tags keyword_tags rating_tags i18n future disqus_tags event_tags festival_tags %}
+
+{% block title %}
+ {{ title }}
+{% endblock %}
+
+{% block main %}
+
+{% block event_detail_content %}
+<iframe width="100%" height="820px" scrolling="auto" src="http://eve.ircam.fr/manifeste.php/card" frameborder="0" allowfullscreen=""></iframe>
+{% endblock %}
+
+{% endblock %}