{% extends "events/base-wide.html" %}
{% load event_tags %}
{% load styled_forms %}
{% load base_filters %}
{% load i18n %}
{% block title %}{{ block.super }}Registration Pre {{ event.title }} {{ event.start_dt|date:"M j, Y" }}{% endblock %}
{% block extra_head %}
{{ block.super }}
{% endblock %}
{% block body %}
{% event_nav user event %}
{{ event.start_dt|date:"M j, Y" }}
{{ event.start_dt|date:"P" }} - {{ event.end_dt|date:"P" }}
{% include "events/include/spots_status.html" %}
Pricing Information
{% if individual_pricings %}
{% if table_pricings %}
For Individuals:
{% endif %}
{% for pricing in individual_pricings %}
{{ pricing.title }}{% if pricing.target_display %} ({{ pricing.target_display }}){% endif %} |
{{ pricing.end_dt|date:'M j g:i A' }} |
{{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ pricing.price }} |
|
{% endfor %}
{% endif %}
{% if table_pricings %}
{% if individual_pricings %}
For Table/Team:
{% endif %}
{% for pricing in table_pricings %}
{{ pricing.title }}{% if pricing.target_display %} ({{ pricing.target_display }}){% endif %} |
{{ pricing.end_dt|date:'M j g:i A' }} |
{{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ pricing.price }} |
|
{% endfor %}
{% endif %}
{% endblock %}
{% block extra_body %}
{{ block.super }}
{% endblock %}