{% extends "base_resource.html" %} {% block entity_content %} {% load i18n %}

Contacts

{% trans "The contacts listed below are the official contacts for this membership and have the authority and responsibility to manage all aspects of it." %}

New Contact {% if entity_list %} {% for entity in entity_list %} {% endfor %}
{% trans 'First Name' %}{% trans 'Last Name' %}{% trans 'Email' %}{% trans 'Is Billing' %}{% trans 'Actions' %}
{{ entity.first_name }} {{ entity.last_name }} {{ entity.email }} {{ entity.is_billing|yesno:"Yes,No" }} {% trans 'Edit' %} {% trans 'Delete' %}
{% if is_paginated %} {% endif %} {% endif %} {% endblock %}