{% load i18n %}
{% load static %}
{% load evelinks %}
{% load humanize %}
{% if character %}
{% translate "Payment Details" %}
{% translate "Payment Information" %}
{% translate "Dashboard" %}
{% trans "Account" %}: |
{{ character.payment_system.status }} |
{% trans "Deposit" %}: |
{{ character.payment_system.payment_pool }} |
{% trans "Corporation" %}: |
{{ character.payment_system.corporation }} |
{% translate "Payment Status" %}
{{ character.payment.status }}
{% translate "Payment History" %}
{% translate "User" %} |
{% translate "Date" %} |
{% translate "Action" %} |
{% translate "Comment" %} |
{% translate "Status" %} |
{% for payment_id, payment in character.payment_history.items %}
{{ payment.reviser }} |
{{ payment.date }} |
{{ payment.action }} |
{{ payment.comment }} |
{{ payment.status }} |
{% endfor %}
{% else %}
{% translate "No character found." %}
{% endif %}