{% extends "events/base.html" %} {% load event_tags %} {% load tagging_tags %} {% load base_tags %} {% load category_tags %} {% load humanize %} {% block title %}{{ block.super }}{% blocktrans with title=event.get_title %}{{ title }}{% endblocktrans %}{% endblock %} {% block meta_description %}{% blocktrans with desc=event.get_description %}{{ desc }}{% endblocktrans %}{% endblock %} {% block meta_keywords %}{% blocktrans with keys=event.get_keywords %}{{ keys }}{% endblocktrans %}{% endblock %} {% block meta_canonical_url %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% blocktrans with title=event.title %}{{ title }}{% endblocktrans %}

{% trans "Speaker List" %}

{% for speaker in speakers %}
{% if speaker.get_photo %}
Speaker: {{ speaker.name }}
{% endif %}
{% trans "Speaker" %} {{ speaker.name }}
{% if speaker.description|striptags|wordcount > 50 %}
{% blocktrans with desc=speaker.description|striptags|safe|truncatewords:"50" %}{{ desc }}{% endblocktrans %}
{% blocktrans with desc=speaker.description|safe|urlize|linebreaks %}{{ desc }}{% endblocktrans %}
{% else %}
{% blocktrans with desc=speaker.description|safe|urlize|linebreaks %}{{ desc }}{% endblocktrans %}
{% endif %} {% if speaker.description|striptags|wordcount > 50 %} {% trans "Full Description" %} {% endif %}
{% endfor %}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}