{% extends 'admin/inspect.html' %} {% load i18n static simpelcore_tags %} {% block content_main %}
{% trans "Inner ID" %}
: {{ object.inner_id|upper }}
{% trans "Group" %}
: {{ object.reference.group|title }}
{% trans "Status" %}
: {{ object.get_status_display }}
{% trans "Date" %}
: {{ object.created_at }}
{% trans "Reference" %}
: {% if object.reference %}{{ object.reference.opts.verbose_name }}{% endif %} #{{ object.reference_id }}
{% trans "Source" %}
: {{ object.reference.customer }}
{% trans "Destination" %}
: {{ object.gateway }}
{% trans "Memo" %}
: {% firstof object.note '-' %}
{% trans "Amount" %}
: {{ object.amount|currency }}
{% trans "Amount Text" %}
: {{ object.amount|number_to_text|title }}
{% trans "Created By" %}
: {{ object.user.get_full_name }} (@{{ object.user }})
{% include 'notices/object_action_logs.html' %}
{% endblock %}