{% extends "events/base-wide.html" %} {% load perm_tags %} {% load event_tags %} {% load tagging_tags %} {% load base_tags %} {% load category_tags %} {% load humanize %} {% load i18n %} {% block title %}{{ block.super }}{{ event.get_title }}{% endblock %} {% block meta_description %}{{ event.get_description }}{% endblock %} {% block meta_keywords %}{{ event.get_keywords }}{% endblock %} {% block meta_canonical_url %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %} {% has_perm user events.change_event as can_edit %}
{% event_nav user event %}

{{ event.title }}

{% for speaker in speakers|slice:"1" %}
{% if speaker.get_photo %}
Speaker: {{ speaker.name }}
{% endif %}
{% trans "Speaker" %} {{ speaker.name }}
{% if speaker.description|striptags|wordcount > 50 %}
{{ speaker.description|striptags|safe|truncatewords:"50" }}
{{ speaker.description|safe|urlize|linebreaks }}
{% else %}
{{ speaker.description|safe|urlize|linebreaks }}
{% endif %} {% if speaker.description|striptags|wordcount > 50 %} {% trans "Full Description" %} {% endif %}
{% endfor %} {% if speakers|length > 1 %} {% trans "Speaker info" %} {% endif %}
{% if event.image %}
{% endif %}
{{ event.description|safe }}
{% if organizer.name %}
{% trans "Organizer" %} {{ organizer.name }}
{% if organizer.description|striptags|wordcount > 50 %}
{{ organizer.description|striptags|truncatewords:"50" }}
{{ organizer.description|safe|urlize|linebreaks }}
{% else %}
{{ organizer.description|safe|urlize|linebreaks }}
{% endif %} {% if organizer.description|striptags|wordcount > 50 %} {% trans "Full Description" %} {% endif %}
{% endif %} {% if addons %}

{% trans "Addons" %}

{% for addon in addons %}

{{ addon.title }}

{% if addon.options.all %} {% endif %}
Price{{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ addon.price }}
Options {% for op in addon.options.all %} {{ op.title }}{% if not forloop.last%}, {% endif %} {% endfor %}
{% endfor %}
{% endif %}
{% if event_files %}

{% trans "Event Files" %}

{% for file in event_files %} {% file_detail file %} {% endfor %} {% endif %} {% if speaker_files %}

{% trans "Speaker Files" %}

{% for file in speaker_files %} {% file_detail file %} {% endfor %} {% endif %} {% if organizer_files %}

{% trans "Organizer Files" %}

{% for file in organizer_files %} {% file_detail file %} {% endfor %} {% endif %} {% if place_files %}

{% trans "Location Files" %}

{% for file in place_files %} {% file_detail file %} {% endfor %} {% endif %}
{% if event.external_url %} {% endif %}

{% trans "When?" %}

{% for span in event.date_spans %} {% if span.same_date %}
{{ span.start_dt|date:"D, M. j, Y" }}
{% if not forloop.last %} and {% endif %} {% else %}
{{ span.start_dt|date:"D, M. j" }} - {{ span.end_dt|date:"D, M. j, Y" }}
{% if not forloop.last %} and {% endif %} {% endif %} {% endfor %}
{{ event.start_dt|date:"P" }} - {{ event.end_dt|date:"P" }} {{ event.timezone }}
{% if event.registration_configuration.enabled %}

How Much?

{% registration_pricing_and_button event request.user %}
{% endif %}

{% trans "Where?" %}

{{ event.place.name }}
{{ event.place.address }}
{{ event.place.city_state|join:", "}} {{ event.place.zip }}
{{ event.place.country }}
{% if event.place.description|striptags|wordcount > 50 %}
{{ event.place.description|striptags|truncatewords:"50" }}
{{ event.place.description|safe|urlize|linebreaks }}
{% else %}
{{ event.place.description|safe|urlize|linebreaks }}
{% endif %} {% if event.place.description|striptags|wordcount > 50 %} {% trans "Full Description" %} {% endif %}
{% if event.place.address and event.place.city_state %} {% endif %} {% url event event.pk as the_url %}

{% fb_like_button_iframe the_url %}

{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}