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

{{ data.character.character_name }}

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

No Data

You probably need to load a token, or wait for an update to run!

{% endif %}
{% endfor %}
{% endblock %} {% block extra_javascript %} {% include 'bundles/datatables-js.html' %} {% endblock %} {% 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 %}