<iframe src="http://medias.ircam.fr/embed/media/{{ video.media_id }}" frameborder="0" allowfullscreen="" width="100%"></iframe>
</div>
+{% with video as object %}
+ {% include "includes/share_buttons.html" %}
+{% endwith %}
+
<div class="video-event">
<h2>{% trans 'Related event' %}</h2>
{% with video.event as event %}
{% block event_detail_sharebuttons %}
{% set_short_url_for event %}
+ {% with event as object %}
{% include "includes/share_buttons.html" %}
+ {% endwith %}
{% endblock %}
{% if event.location %}
{% load i18n %}
<div class="share__button">
- <a class="btn btn-facebook" target="_blank" href="http://facebook.com/sharer.php?u={{ request.build_absolute_uri }}&t={{ event.title|urlencode }}">{% trans "Share on Facebook" %}</a>
- <a class="btn btn-twitter" target="_blank" href="http://twitter.com/home?status={{ event.short_url|urlencode }}%20{{ event.title|urlencode }}">{% trans "Share on Twitter" %}</a>
- <a class="btn btn-email" target="_blank" href="mailto:?subject=SUBJECT TEXT HERE&body=TEXT HERE URL">{% trans "Share by email" %}</a>
+ <a class="btn btn-facebook" target="_blank" href="http://facebook.com/sharer.php?u={{ request.build_absolute_uri }}&t={{ object.title|urlencode }}">{% trans "Share on Facebook" %}</a>
+ <a class="btn btn-twitter" target="_blank" href="http://twitter.com/home?status={{ object.title|urlencode }}%20{{ request.build_absolute_uri }}">{% trans "Share on Twitter" %}</a>
+ <a class="btn btn-email" target="_blank" href="mailto:?subject=object.title&body={{ request.build_absolute_uri }}">{% trans "Share by email" %}</a>
<a class="btn btn-print" href="javascript:window.print()">{% trans "Print this page" %}</a>
-</div>
\ No newline at end of file
+</div>