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