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

Identity Management


{% for message in messages %}
{{ message }}
{% endfor %}

User Details

{% if identity.communicate_through %} {% url 'identities-detail' identity.communicate_through as url %} {% else %} {% endif %} {% with addresses=identity|get_identity_addresses %} {% endwith %} {% for key, value in identity.details.items %} {% if not value|is_dict %} {% endif %} {% endfor %}
Unique ID:{{ identity.id }}
Created:{{ identity.created_at|get_date|date:"D d M Y H:i" }}
Last Updated:{{ identity.updated_at|get_date|date:"D d M Y H:i" }}
Communicate Through:{{ identity.communicate_through|truncatechars:12 }}{{ identity.communicate_through }}
Default Address:{% for address, info in addresses.items %}{{ address }}{% endfor %}
{{ key|unslug|title }}: {{ value }}
{% if optout_visible == True %}
{% csrf_token %}
{% endif %}

Addresses

{% for address_type, addresses in identity.details.addresses.items %} {% for address, info in addresses.items %} {% endfor %} {% endfor %}
Address Type Address Extra Information
{{ address_type }} {{ address }} {% for k, v in info.items %}{{ k|title }}: {{ v }}{% endfor %}

Registrations

{% for registration in registrations.results %} {% url 'registrations-detail' registration.id as url %} {% endfor %}
Registration Validated Stage Created Updated
{{ registration.id|truncatechars:12 }} {{ registration.validated }} {{ registration.stage }} {{ registration.created_at|get_date|date:"D d M Y H:i" }} {{ registration.updated_at|get_date|date:"D d M Y H:i" }}

Changes

{% for change in changes.results %} {% url 'changes-detail' change.id as url %} {% endfor %}
Change Validated Action Created Updated
{{ change.id|truncatechars:12 }} {{ change.validated }} {{ change.action }} {{ change.created_at|get_date|date:"D d M Y H:i" }} {{ change.updated_at|get_date|date:"D d M Y H:i" }}

Subscriptions

{% csrf_token %}
{{ add_subscription_form|bootstrap_inline }}

{% for subscription in subscriptions.results|dictsortreversed:'active' %} {% url 'subscriptions-detail' subscription.id as url %} {% endfor %}
Subscription Set Next Language Active Completed Created Last Updated
{{ subscription.id|truncatechars:12 }} {{ messagesets|get_item:subscription.messageset }} {{ subscription.next_sequence_number }} {{ subscription.lang }} {{ subscription.active }} {{ subscription.completed }} {{ subscription.created_at|get_date|date:"D d M Y H:i" }} {{ subscription.updated_at|get_date|date:"D d M Y H:i" }} {% if subscription.active == True %}
{% csrf_token %}
{% endif %}

Messages sent to user

{% for outbound in outbound_messages.results %} {% endfor %}
Delivered Attempts Content Created Last Updated
{{ outbound.delivered }} {{ outbound.attempts }} {{ outbound.content }} {{ outbound.created_at|get_date|date:"D d M Y H:i" }} {{ outbound.updated_at|get_date|date:"D d M Y H:i" }}

Inbound Messages

{% for inbound in inbounds.results %} {% endfor %}
To Address Content Created Date Last Updated Date
{{ inbound.to_addr }} {{ inbound.content }} {{ inbound.created_at|get_date|date:"D d M Y H:i" }} {{ inbound.updated_at|get_date|date:"D d M Y H:i" }}
{% endblock %}