{% extends 'blacklist/base.html' %} {% load evelinks %} {% load i18n %} {% load humanize %} {% block tb_block %} {% translate "Blacklist" as translated_header %} {% include "tnnt_templates/includes/header/page-header.html" with header_text=translated_header %}
{% translate "Blacklisted Entities" %}
{% if blacklist %} {% for note in blacklist %} {% endfor %}
{% translate "Name" %} {% translate "Reason" %} {% translate "Category" %}
{% if note.eve_catagory == "character" %} {{ note.eve_name }} {% elif note.eve_catagory == "corporation" %} {{ note.eve_name }} {% elif note.eve_catagory == "alliance" %} {{ note.eve_name }} {% endif %}

{{ note.eve_name }} {% if note.eve_catagory == 'character' %}
{{ note.corporation_name }}
{{ note.alliance_name|default_if_none:"" }} {% endif %}

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

{{ note.eve_catagory }}
{% else %}
{% trans "No one is yet to be Blacklisted. You guys are so nice!" %}
{% endif %}
{% endblock %} {% block extra_javascript %} {% include 'bundles/datatables-js.html' %} {% endblock %}