{% extends "events/base-wide.html" %} {% load perm_tags %} {% load event_tags %} {% load tagging_tags %} {% load base_filters %} {% load base_tags %} {% load category_tags %} {% load humanize %} {% load meta_tags %} {% 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 %} {% meta_og_image event "image" %} {% meta_og_image event "description" %} {{ block.super }} {% endblock %} {% block content %} {% has_perm user events.change_event as can_edit %}

{% if event.priority %}
{% endif %} {% if event.is_recurring_event %}
{% endif %} {% blocktrans with title=event.title %}{{ title }}{% endblocktrans %}

{% if event_files or speaker_files or organizer_files or place_files %} {% else %}
{% endif %}
{% if event.image %}
{{ event.title|truncatechars:123 }}
{% endif %}
{% blocktrans with desc=event.description|safe %}{{ desc }}{% endblocktrans %}
{% if event.groups.count > 0 %}
{% trans "Group(s):" %} {% for group in event.groups.all %} {{ group.name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}
{% 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 %} {% if speakers_length > 1 %} {% trans "View all speakers" %} {% endif %} {% if organizer.name %}
{% trans "Organizer" %} {{ organizer.name }}
{% if organizer.description|striptags|wordcount > 50 %}
{% blocktrans with desc=organizer.description|striptags|truncatewords:"50" %}{{ desc }}{% endblocktrans %}
{% blocktrans with desc=organizer.description|safe|urlize|linebreaks %}{{ desc }}{% endblocktrans %}
{% 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 }}
{% trans '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 %}
{% include 'events/meta.html' %}
{% if event.external_url %} {% endif %}

{% trans "When?" %}

{% for span in event.date_spans %} {% if span.same_date %}
{{ span.start_dt|date:"D, N 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 %}
{% if not event.all_day %} {{ event.start_dt|date:"P" }} - {{ event.end_dt|date:"P" }}{% endif %}
{% if not event.all_day %}
{{ event.timezone.zone|timezone_label }}
{% endif %}
{% if event.registration_configuration.enabled %}

{% if not free_event %} {% trans 'How Much?' %} {% endif %}

{% 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"|safe }}
{{ event.place.description|safe|linebreaks }}
{% else %}
{{ event.place.description|safe|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 %}

{% include 'social_media/icons.html' %}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}