{% extends "autosrp/base.html" %} {% load static %} {% load i18n humanize %} {% block content %}

My Discord settings

{% csrf_token %}
{{ discord_form.discord_enabled }} {% if discord_form.discord_enabled.errors %}
{{ discord_form.discord_enabled.errors }}
{% endif %}

Toggle whether AutoSRP sends you Discord notifications.

My SRP requests

{% if my_srp_requests %}
{% for r in my_srp_requests %} {% endfor %}
Time Character Ship Doctrine Kill Status Value
{{ r.occurred_at|date:"Y-m-d H:i" }} {{ r.char_name }} {{ r.ship_name }} {{ r.doctrine_name }} {% if r.killmail_id %} #{{ r.killmail_id }} {% else %} - {% endif %} {{ r.status|title }} {% if r.comment %}
“{{ r.comment }}”
{% endif %}
{{ r.value_label }}
{{ r.value_amount }}
Totals
  • Total Loss of Requests: {{ u_total_loss|floatformat:2|intcomma }}
  • Total Paid of Rquests: {{ u_total_paid }}
  • Total Fights: {{ u_total_fights }}
  • Total Requests: {{ u_total_kills }}
Averages
  • Average Requests per Fight: {{ u_avg_kills_per_fight }}
  • Average Loss per fight: {{ u_avg_loss_per_fight|floatformat:2|intcomma }}
  • Average Paid per fight: {{ u_avg_paid_per_fight|floatformat:2|intcomma }}
Review Status
  • Submitted: {{ u_submitted_cnt }}
  • Approved: {{ u_approved_cnt }}
  • Approved with Comment: {{ u_approved_with_comment_cnt }}
  • Rejected: {{ u_rejected_cnt }}
Penalty
  • Average Penalty Percent: {{ u_avg_penalty_pct|floatformat:2 }}%
{% else %}

No SRP requests found. If your characters are linked to your auth account, their eligible kills will appear here.

{% endif %}
{% endblock %}