{% extends 'allianceauth/base.html' %} {% load static %} {% load humanize %} {% load evelinks %} {% block page_title %}Entry Details{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}

{{ entry.rotation.name }}

Entry

  • {{ entry.created_at|date:"d/m/Y G:i e" }}

  • Shares

    {{ entry.total_shares_count }}

  • Total After Tax

    {{ entry.estimated_total_after_tax|floatformat|intcomma }}

  • Total

    {{ entry.estimated_total|floatformat|intcomma }}

  • Created By

    {{ entry.created_by.profile.main_character.character_name }}

Shares

{% for share in entry.ratting_shares.all %} {% endfor %}
Character Helped Setups Count Share Total
{{ share.user.profile.main_character.character_name }} {{ share.helped_setup }} {{ share.share_count }} {{ share.estimated_share_total|floatformat|intcomma }}
Back {% if perms.allianceauth_pve.manage_entries and user == entry.created_by or user.is_superuser %} Edit Delete {% endif %}
{% endblock content %}