{% extends "allianceauth/base-bs5.html" %} {% load i18n %} {% load django_bootstrap5 %} {% load blacklist_tags %} {% block page_title %} {% translate "Character Update" %} {% endblock page_title %} {% block content %}

{% translate "Editing Pilot Log" %}

{% translate "Please ensure character below is correct!" %}

{% if note.eve_catagory == 'character' %}
{% eve_logo note.eve_id note.eve_name note.eve_catagory 128 %}

{{ note.eve_name }}

{% eve_logo note.corporation_id note.corporation_name "corporation" 64 %}
{{ note.corporation_name }}
{% eve_logo note.alliance_id note.alliance_name "alliance" 64 %}
{{ note.alliance_name }}
{% else %}
{% eve_logo note.eve_id note.eve_name note.eve_catagory 128 %}

{{ note.eve_name }}

{% endif %}
{% csrf_token %} {% if name.category == 'character' %} {% if alliance_info %} {% endif %} {% endif %} {{ form.reason.errors }} {% bootstrap_field form.reason %} {% if perms.blacklist.add_restricted_eve_notes %} {{ form.restricted.errors }} {% bootstrap_field form.restricted %} {% endif %} {% if perms.blacklist.add_ultra_restricted_eve_notes %} {{ form.ultra_restricted.errors }} {% bootstrap_field form.ultra_restricted %} {% endif %} {% if perms.blacklist.add_to_blacklist %} {{ form.blacklisted.errors }} {% bootstrap_field form.blacklisted %} {% endif %}
{% endblock content %}