{% extends "events/base-wide.html" %} {% load event_tags %} {% load styled_forms %} {% load base_filters %} {% block title %}{{ block.super }}{% trans "Registration Pre" %} {{ event.title }} {{ event.start_dt|date:"M j, Y" }}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
{{ event.start_dt|date:"M j, Y" }}
{% if not event.all_day %} {{ event.start_dt|date:"P" }} - {{ event.end_dt|date:"P" }}{% endif %}
{% include "events/include/spots_status.html" %}

Pricing Information

{% if individual_pricings %} {% if table_pricings %}
{% trans "For Individuals" %}:
{% endif %}
{% for pricing in individual_pricings %}

{{ pricing.title }}{% if pricing.target_display %} ({{ pricing.target_display }}){% endif %}

{% trans "Available Before" %}: {{ pricing.end_dt|date:'M j g:i A' }}

{{ pricing.description|safe }}

{% trans "Price" %}: {{ pricing.price|format_currency }}

{% with pricing as price %} {% include "events/include/pricing_spots_status.html" %} {% endwith %}
{% if pricing.registration_cap and pricing.spots_available <= 0 %} {% trans 'Sold out' %} {% else %}
{% endif %}
{% endfor %}
{% endif %} {% if table_pricings %} {% if individual_pricings %}
{% trans "For Table/Team" %}:
{% endif %}
{% for pricing in table_pricings %}

{{ pricing.title }}{% if pricing.target_display %} ({{ pricing.target_display }}){% endif %}

{% trans "Available Before" %}: {{ pricing.end_dt|date:'M j g:i A' }}

{{ pricing.description|safe }}

{% trans "Price" %}: {{ pricing.price|format_currency }}

{% endfor %}
{% endif %}
{% endblock %}