{% extends "base.html" %} {% import "macros.html" as macros with context %} {% block head %} {{ super() }} {% endblock head %} {% block body %} {{ super() }} {% endblock body %} {% block content %}
{% block left_col %}
{% block info %}
Lossmail
{{ srp_request.id }}
Time of Loss
{{ srp_request.kill_timestamp.strftime('%d %b %Y @ %H:%M') }}
Division
{{ srp_request.transformed.division }}Change Division
Details

{{ srp_request.details }}

{% if not srp_request.finalized and srp_request.submitter == current_user %} {% endif %}
Pilot
{{ srp_request.transformed.pilot }}
Corporation
{{ srp_request.transformed.corporation }}
Alliance
{{ srp_request.transformed.alliance|default(' ') }}
Location
{{ srp_request.transformed.region }} / {{ srp_request.transformed.constellation }} / {{ srp_request.transformed.system }}
Ship
{{ srp_request.transformed.ship_type }}
Status
{{ srp_request.transformed.status }}
Payout
{{ srp_request.payout.currency() }}
{% endblock info %}
{% if current_user.has_permission((PermissionType.review, PermissionType.pay), srp_request) or current_user == srp_request.submitter %}
{{ action_form.id_ }} {{ action_form.type_ }} {{ action_form.csrf_token }}
{{ action_form.note(class="form-control") }}
{% for action in srp_request.valid_actions(current_user) %} {% if loop.first %} {% endif %} {% endfor %}
{% endif %} {% block action_list %}
{% for action in srp_request.actions %} {% with %} {% set item_class = 'text-' ~ macros.status_color(action.type_) if macros.status_color(action.type_) != '' %}

{{ action.type_ if action.type_ != ActionType.comment }}

{{ action.note }}

{{ action.user.name }} ({{ action.timestamp.strftime('%d %b %Y @ %H:%M') }})
{% endwith %} {% endfor %}
{% endblock action_list %} {% endblock left_col %}
{% block right_col %}
Modifiers
{% block list_modifiers %}
{% for modifier in srp_request.modifiers %} {% if modifier.voided %}
{% elif modifier.value < 0 %}
{% elif modifier.value >= 0 %}
{% endif %}
{% block modifier_header scoped %} {{ ''|safe if modifier.voided }}

{{ modifier }}

{{ '
'|safe if modifier.voided }} {% endblock modifier_header %}
{% if modifier.voided %}
{{ modifier.note ~ ' ' if modifier.note }} (voided by {{ modifier.voided_user.name }} at {{ modifier.voided_timestamp.strftime('%H:%M %d %b %Y') }})
{% else %} {% if modifier.note %}
{{ modifier.note }}
{% endif %} {% endif %}
{% endfor %}
{% endblock list_modifiers %}
{% endblock right_col %}
{% endblock content %}