{% extends 'blacklist/base.html' %} {% load i18n %} {% load blacklist_tags %} {% load humanize %} {% block tb_block %}

Blacklist

{% if blacklist %}
{% for note in blacklist %} {% endfor %}
Name Reason Category
{% eve_logo note.eve_id note.eve_name note.eve_catagory 64 %}

{{ note.eve_name }} {% if note.eve_catagory == 'character' %}
{{ note.corporation_name }}
{{ note.alliance_name }}{% endif %}

{% if note.restricted %}Restricted Content! Contact {{note.added_by}}{% else %}{{ note.reason }}{% endif %}

{{ note.eve_catagory }}
{% else %}
{% translate "No one is yet to be Blacklisted. You guys are so nice!" %}
{% endif %}
{% endblock %} {% block extra_javascript %} {% include 'bundles/datatables-js.html' %} {% endblock %} {% block extra_script %} $(document).ready(function() { $('#blacklist-table').DataTable({ "filterDropDown": { columns: [{ idx: 3 }], bootstrap: true }, "columnDefs": [ { "searchable": false, "targets": [0] }, { "sortable": false, "targets": [0,2] }, { "visible": false, "targets": [3] } ], "order": [ [1, "asc"] ], "pageLength": 25, "responsive" : true }); }); {% endblock %}