{% extends "ci/base.html" %} {% load staticfiles %} {% load bootstrap %} {% load seed %} {% block pagetitle %}Identity Management{% endblock %} {% block content %}
| 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: | {% if identity.communicate_through %} {% url 'identities-detail' identity.communicate_through as url %}{{ identity.communicate_through|truncatechars:12 }} | {% else %}{{ identity.communicate_through }} | {% endif %}
| Default Address: | {% with addresses=identity|get_identity_addresses %}{% for address, info in addresses.items %}{{ address }}{% endfor %} | {% endwith %}|
| {{ key|unslug|title }}: | {{ value }} |
| Address Type | Address | Extra Information |
|---|---|---|
| {{ address_type }} | {{ address }} | {% for k, v in info.items %}{{ k|title }}: {{ v }} {% 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" }} |
| 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" }} |
| 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 %} {% endif %} |
| Delivered | Attempts | Content | Created | Last Updated |
|---|---|---|---|---|
| {{ outbound.delivered }} | {{ outbound.attempts }} | {% if outbound.content %} {{ outbound.content }} {% elif outbound.metadata.voice_speech_url %} {{outbound.metadata.voice_speech_url}} {% else %} Content not found. {% endif %} | {{ outbound.created_at|get_date|date:"D d M Y H:i" }} | {{ outbound.updated_at|get_date|date:"D d M Y H:i" }} |
| 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" }} |