{% extends "ci/base.html" %} {% load bootstrap %} {% load staticfiles %} {% block pagetitle %}Identity Management{% endblock %} {% block content %}
Seed Control Interface

Identity Management


{{ form|bootstrap_inline }}

{% for identity in identities %} {% url 'identities-detail' identity.id as url %} {% with addresses=identity|get_identity_addresses %} {% endwith %} {% if identity.communicate_through %} {% url 'identities-detail' identity.communicate_through as url %} {% else %} {% endif %} {% endfor %}
Identity Primary Address Communicate Through Created Updated
{{ identity.id|truncatechars:12 }}{% for address, info in addresses.items %}{{ address }}{% endfor %}{{ identity.communicate_through|truncatechars:12 }}{{ identity.communicate_through }}{{ identity.created_at|get_date|date:"D d M Y H:i" }} {{ identity.updated_at|get_date|date:"D d M Y H:i" }}
{% endblock %}