{% extends "industry_reforged/base.html" %} {% load i18n humanize %} {% block details %}

{% trans "Corporate Wallets" %}

Refresh Data Back to Director Panel
{% for div in divisions %} {% empty %}
No wallet data available. Make sure the Corporate Sync character has the wallet scope and then sync data.
{% endfor %}
{% if selected_division_id %}

{% trans "Journal Entries" %}

{% for j in journals %} {% endfor %}
Date Type Amount Balance Description / Reason
{{ j.date|date:"Y-m-d H:i" }} {{ j.ref_type }} {{ j.amount|floatformat:2|intcomma }} ISK {{ j.balance|floatformat:2|intcomma }} {% if j.description %}{{ j.description }}{% endif %} {% if j.description and j.reason %}
{% endif %} {% if j.reason %}{{ j.reason }}{% endif %}
{% endif %}
{% endblock %} {% block extra_javascript %} {{ block.super }} {% endblock %}