{% extends "corptools/character/char_base.html" %} {% load humanize %} {% load i18n %} {% load evelinks %} {% block ct_block %}
{% for name, data in table_data.items %}
{{ name }}

{{ data.character.character_name }}

{% translate "Total SP" %}: {{ data.total_sp|intcomma }}
{% translate "Isk" %}: {{ data.character.characteraudit.balance|intcomma }}
{% if data.history|length > 0 %}
{% for k, c in data.history.items %} {% endfor %}
{% translate "Corporations" %} {% translate "Joined" %}
{{ c.name }} {{ c.started|date:"Y/m/d" }} {{ k }}
{% else %}

{% translate "No Data" %}

{% translate "You probably need to load a token, or wait for an update to run" %}!

{% endif %}
{% endfor %}
{% endblock ct_block %} {% block extra_javascript %} {% include "bundles/datatables-js.html" %} {% endblock extra_javascript %} {% block ct_extra_script %} $(document).ready(function() { $('table.datatable').DataTable({ "paging": false, "ordering": true, "searching": false, "info": false, "columnDefs": [ { "sortable": false, "targets": [0] }, { "visible": false, "targets": [3] } ], "order": [ [2, "desc"] ] }); } ); {% endblock ct_extra_script %}