{% extends 'allianceauth/base.html' %} {% block page_title %}Alliance Contacts{% endblock page_title %} {% block extra_css %} {% include "bundles/datatables-css.html" %} {% endblock %} {% block content %}

{{ alliance.alliance_name }} Contacts

Info

  • Last update

    {% if token is None %}

    No token present

    {% else %}

    {{ token.last_update|date:"d/m/Y G:i e" }}

    {% endif %}
  • {% if token is None %} Add token {% else %} Update {% endif %}
{% for contact in contacts %} {% endfor %}
Contact Contact Type Labels Standing Notes
{{ contact.contact_name }} {{ contact.contact_type }} {% for label in contact.labels.all %}{{ label.label_name }}, {% endfor %} {{ contact.standing }} {{ contact.notes }}
{% endblock content %} {% block extra_javascript %} {% include "bundles/datatables-js.html" %} {% endblock extra_javascript %} {% block extra_script %} $(document).ready(function() { $('.table').DataTable({ "pageLength": 50 }); }); {% endblock extra_script %}