{% extends "corptools/character/char_base.html" %} {% load i18n %} {% block ct_block %} {% load colors %} {% load l10n %} {% load humanize %}
{% translate "Wallets" %}
{% for n in table_data %} {% endfor %}
{% translate "Date" %} {% translate "Character" %} {% translate "Type" %} {% translate "Text" %} {% translate "Read" %}
{{ n.timestamp|date:"Y-m-d h:i:s" }} {{ n.character.character.character_name }} {{ n.notification_type }} {{ n.notification_text.notification_text }} {{ n.is_read }}
{% endblock ct_block %} {% block extra_javascript %} {% include "bundles/datatables-js.html" %} {% endblock extra_javascript %} {% block ct_extra_script %} $(document).ready(function() { $('#wallet').DataTable({ "filterDropDown": { columns: [{ idx: 1 }, { idx: 2 }], bootstrap: true }, "order": [ [0, "desc"] ], "pageLength": 50 }); }); {% endblock ct_extra_script %}