{% extends base_template|default:'website/backoffice/base.html' %} {% load url from future %} {% load spurl %} {% load fiber_tags thumbnail breadcrumb_tags %} {% block bodyclass %}list{% endblock %} {% block buttons %} {% endblock %} {% block content %}
{% if member.mugshot %} {% else %} {% endif %}
{% if object_display %}
{% for field_name, field in object_display %} {% if field %} {% endif %} {% endfor %}
{{ field_name|capfirst }} {{ field|safe }}
{% endif %} {% if table.rows %} {% for column in table.columns %} {% endfor %} {% for row in table.rows.page %} {% for value in row %} {% endfor %} {% endfor %}
Activities
{% if column.sortable %} {% endif %} {{ column }} {% if column.sortable %} {% endif %} {% if column.is_ordered %} {% if column.is_ordered_straight %}
{% else %}
{% endif %} {% endif %}
{% if forloop.counter == 1 %} {{ value }} {% else %} {% if value %} {{ value }} {% else %} – {% endif %} {% endif %}
{% if table.paginator.num_pages > 1 %} {% endif %} {% endif %} {% if activities %} {% for activity in activities %} {% endfor %}
Roles
Role
{{ activity.role }}
{% endif %} {% if donation_table.rows %} {% for column in donation_table.columns %} {% endfor %} {% for row in donation_table.rows %} {% for value in row %} {% endfor %} {% endfor %}
Donations
{% if column.sortable %} {% endif %} {{ column }} {% if column.sortable %} {% endif %}
{% if value %} {{ value }} {% else %} – {% endif %}
{% if summary_table.rows %} {% for row in summary_table.rows %} {% for value in row %} {% endfor %} {% endfor %}
Total Donation
Date Donation
{% if value %} {{ value }} {% else %} – {% endif %}
Total {{ total_value }}
{% endif %} {% endif %} {% if profile_note.rows %} {% for column in profile_note.columns %} {% endfor %} {% for row in profile_note.rows %} {% for value in row %} {% endfor %} {% endfor %}
Notes
{% if column.sortable %} {% endif %} {{ column }} {% if column.sortable %} {% endif %} {% if column.is_ordered %} {% if column.is_ordered_straight %}
{% else %}
{% endif %} {% endif %}
{% if forloop.counter == 1 %} {{ value|safe|linebreaks }} {% else %} {% if value %} {{ value }} {% else %} – {% endif %} {% endif %}
{% endif %}

{% csrf_token %}
{% for field in profile_note_form %}
{% if field.label %}
{{ field.label }}
{{ field|safe }} {% if field.errors%}
* {{field.label}} is required.
{% endif %}
{% else %} {{ field|safe }} {% if field.errors%}
* {{field.label}} is required.
{% endif %} {% endif %}
{% endfor %}
{% endblock %}