{% extends "events/base.html" %} {% load event_tags %} {% load styled_forms %} {% load profile_tags %} {% load base_filters %} {% block title %}{{ block.super }} {% blocktrans with title=event.title %}{{ title }} Cancel Registration{% endblocktrans %} {% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Cancel Event Registration" %}

{% blocktrans with title=event.title %}{{ title }}{% endblocktrans %}
{% if registrant.first_name or registrant.last_name %} {% blocktrans with first_name=registrant.first_name last_name=registrant.last_name %} Cancelling registration for {{ first_name }} {{ last_name }}{% endblocktrans %} {% else %} {% blocktrans %} Cancelling registration for Guest #: {% endblocktrans %}{{ forloop.counter0 }} {% endif %}
{% gravatar registrant.user 56 %}
{% if registrant.first_name or registrant.last_name %} {% if registrant.first_name %} {{ registrant.first_name }} {% endif %} {% if registrant.last_name %} {{ registrant.last_name }} {% endif %} {% else %} {% trans "Guest" %} #{{ forloop.counter0 }} {% endif %}
{% trans "Amount:" %} {{ registrant.amount|format_currency }}
{% if hash %}
{% csrf_token %} {% else %} {% csrf_token %} {% endif %}
{% endblock %}