{% load base_filters %} {% load perm_tags %} {% load event_filters %} {% if registration.enabled %} {% if event.is_over and not request.user.is_superuser %}
{% trans "Event has ended" %}
{% else %} {% if spots_taken >= limit and limit > 0 %}
{% trans "Event is full" %} {% if request.user.is_superuser and not event.is_over %}
{% trans "Admin: Register" %}
{% endif %}
{% else %} {% if reg_ended and not event.is_over %}
{% trans "Registration has ended" %}
{% endif %} {% if not reg_started %}
{% trans "Registration starts on " %}
{{ earliest_time }}
{% endif %} {% if pricing %}
{% if pricing|length == 1 and pricing.0.price == 0 and pricing.0|can_register_by:request.user %} {% else %}
    {% for price in pricing %}
  • {% if MODULE_EVENTS_RBONPRICINGLIST %} {% endif %} {{ price.title }}{% if price.target_display %} ({{ price.target_display }}) {% endif %}
    {{ price.price|format_currency }}
    {% include "events/include/pricing_spots_status.html" %}
    ({% trans "Ends" %} {{ price.end_dt|date:"m/d/Y" }}) {% if MODULE_EVENTS_RBONPRICINGLIST %} {% endif %}
  • {% endfor %}
{% if not MODULE_EVENTS_CANREGISTERAGAIN and registrant and not user.is_superuser %} {% if registrant.reg8n_status == 'payment-required' and event.registration_configuration.can_pay_online %} {% trans "Complete registration!" %} {% else %} {% trans "View/Update My Registration" %} {% endif %} {% else %} {% endif %} {% endif %} {% if event.registration_configuration.has_member_price %} {% if not request.user.profile.is_member %} {% trans "Become a member" %} {% endif %} {% endif %}
{% if is_registrant %}
{% trans "You have already registered" %} {% if request.user.is_superuser %}
{% trans "Admin: the Register button above allow you to register somebody else." %} {% endif %} {% if not MODULE_EVENTS_CANREGISTERAGAIN and registrant and user.is_superuser %}
{% trans "View/Update My Registration" %} {% endif %}
{% endif %}
{% endif %} {% endif %} {% endif %} {% else %} {% endif %}