{% extends 'allianceauth/base.html' %} {% 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" }}

  • Users

    {{ entry.total_user_count }}

  • Total After Tax

    {{ entry.estimated_total_after_tax|floatformat|intcomma }}

  • Total

    {{ entry.estimated_total|intcomma }}

  • Created By

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

Fleet Roles

{% for role in entry.roles.all %} {% endfor %}
Role Value Approximate Percentage
{{ role.name }} {{ role.value }} {{ role.approximate_percentage|floatformat }}%

Shares

{% for share in entry.ratting_shares.with_totals %} {% endfor %}
User's Main Character Character Fleet Role Helped Setups Count Share Total
{{ share.user.profile.main_character.character_name }} {{ share.user_character.character_name }} {{ share.role.name }} {% if share.helped_setup %} {% else %} {% endif %} {{ share.site_count }} {{ share.estimated_share_total|floatformat|intcomma }}
Back {% if perms.allianceauth_pve.manage_entries and user == entry.created_by or user.is_superuser %} Edit {% endif %}
{% if perms.allianceauth_pve.manage_entries and user == entry.created_by or user.is_superuser %} {% endif %} {% endblock content %}