{% 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 }}{{ 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 %} {% 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.status_detail == 'template' %} {% endif %}
{% if event.image %}
{{ event.title|truncatechars:123 }}
{% else %}
{% endif %}

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

{{ event.place.name }}
{{ event.place.address }}
{{ event.place.city_state|join:", "}} {{ event.place.zip }}
{{ event.place.country }}

{% if event.registration_configuration.enabled %} {% registration_pricing_and_button event request.user %} {% endif %}

Description

{{ event.description|safe }}

{% if speakers_length >= 1 %}

Featured Speakers

{% for speaker in speakers %}
{% 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 "View all speakers" %} {% endif %} {% endif %} {% 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 sponsor and sponsor.description %}

{% 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.external_url %}

{% trans "View this event's webpage" %} »

{% endif %}

{% trans "Date and Time" %}

{% 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 %}

{% trans "Location" %}

{{ 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|linebreaks }}
{% else %}
{{ event.place.description|safe|linebreaks }}
{% endif %} {% if event.place.description|striptags|wordcount > 50 %} {% trans "Full Description" %} {% endif %}
{% if event.registration_configuration.enabled %}

{% if not free_event %} {% trans 'Pricing' %} {% endif %}

{% registration_pricing_and_button event request.user %}
{% endif %}
{% url "event" event.pk as the_url %}

{% fb_like_button_iframe the_url %}

{% include 'social_media/icons.html' %}
{% if event.place.address and event.place.city_state %}

Location


{% trans 'View Larger Map' %}

{{ event.place.name }}

{{ event.place.address }}
{{ event.place.city_state|join:", "}} {{ event.place.zip }}
{{ event.place.country }}

{% endif %}
{% include 'events/meta.html' %}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}