{% extends "events/base-wide.html" %} {% load event_tags %} {% load styled_forms %} {% load base_filters %} {% block title %}{{ block.super }}{% trans "Sub-Event Registration" %} {{ event.title }} {{ event.start_dt|date:"M j, Y" }}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Meeting Registrations- Sessions" %}

{{ event.title }}

{% if registrants|length == 1 %}
{% trans "View Schedule" %}
{% endif %}
{% csrf_token %} {% for form, registrant in forms|zip:registrants %}

{{ registrant.first_name }} {{ registrant.last_name }}

{% trans "Registration Type: " %}{{ registrant.pricing.title }}
{% trans "Registration Price: " %}{{ registrant.pricing.price|format_currency }}
{% if use_full_dates %} {% for day in registrant.past_attendance_dates %} {{ day|convert_str_date }}
{% for field in form %} {% if field.help_text == day %}
{{ field.label }}
{{ field }}
{% endif %} {% endfor %} {% endfor %} {% endif %} {% for day in registrant.upcoming_attendance_dates %} {{ day|convert_str_date }}
{% for field in form %} {% if field.help_text == day %}
{{ field.label }}
{{ field }}
{% endif %} {% endfor %} {% endfor %}
{% endfor %} {% if payment_required and registration.is_credit_card_payment %}

{% trans 'Note: Your registration will not be completed until payment is received.' %}

{% if registration.is_credit_card_payment %}
{% trans "Click Save & Continue to continue with the payment." %}
{% endif %}
{% endif %}
{% endblock %}