{% extends 'admin/inspect.html' %} {% load i18n static simpelcore_tags %} {% block content %}
{{ object.reference.group|title }}
{{ object.inner_id }}
{% 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 }}
{{ object.amount|number_to_text|title }}
{% trans "Created By" %}
{{ object.user.get_full_name }}
@{{ object.user }}
{% include 'notices/object_action_logs.html' %}
{% endblock %}