{% extends is_ajax|yesno:'base_ajax.html,base_rigs.html' %} {% load widget_tweaks %} {% load static %} {% load button from filters %} {% block title %}Request Authorisation{% endblock %} {% block content %}

Send authorisation request email.

Pressing send will email the address provided. Please triple check everything before continuing.

{% if object.person.email or object.organisation.email %}
{% if object.person.email %}
Person Email
{{ object.person.email }} {% button 'copy' id='#person-email' %}
{% endif %} {% if object.organisation.email %}
Organisation Email
{{ object.organisation.email }} {% button 'copy' id='#org-email' %}
{% endif %}
{% else %}

No email addresses saved to the client ಠ_ಠ

{% endif %}
{% csrf_token %} {% include 'form_errors.html' %}
{% render_field form.email type="email" class+="form-control" %}
{% endblock %} {% block footer %}
Preview
{% endblock %}