{% extends 'allianceauth_pve/base.html' %} {% load humanize %} {% load evelinks %} {% load i18n %} {% block page_title %}{% translate "Entry Details" %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block pvecontent %}
{% translate "Created At" %}

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

{% translate "Number of Users" %}

{{ entry.total_user_count }}

{% if entry.funding_project and entry.funding_percentage > 0 %}
{% translate "Funding Project" %}

{{ entry.funding_project }} ({{ entry.funding_percentage }}%)

{% endif %}
{% translate "Total After Tax" %}

{{ entry.estimated_total_after_tax|floatformat:"g" }}

{% translate "Total" %}

{{ entry.estimated_total|intcomma }}

{% translate "Created By" %}

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

{% translate "Fleet Roles" %}
{% for role in entry.roles.all %} {% endfor %}
{% translate "Role" %} {% translate "Value" %} {% translate "Approximate Percentage" %}
{{ role.name }} {{ role.value }} {{ role.approximate_percentage|floatformat }}%
{% translate "Shares" %}
{% if entry.funding_project and entry.funding_percentage > 0 %} {% endif %} {% for share in entry.ratting_shares.with_totals %} {% if entry.funding_project and entry.funding_percentage > 0 %} {% endif %} {% endfor %}
{% translate "User's Main Character" %} {% translate "Character" %} {% translate "Fleet Role" %} {% translate "Helped Setups" %} {% translate "Count" %} {% translate "Share Total" %}{% translate "Estimated Project Contribution" %}
{{ 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:"g" }}{{ share.estimated_funding_amount|intcomma }}
{% if not entry.rotation.is_closed %} {% if perms.allianceauth_pve.manage_entries and user == entry.created_by or user.is_superuser %} {% translate "Edit" %} {% endif %} {% endif %} {% translate "Back" %}
{% if perms.allianceauth_pve.manage_entries and user == entry.created_by or user.is_superuser %} {% endif %} {% endblock pvecontent %}