{% extends 'allianceauth_pve/base.html' %} {% load humanize %} {% load evelinks %} {% load pvefilters %} {% load i18n %} {% block page_title %}{% translate "Funding Project Details" %}{% endblock page_title %} {% block pvecontent %}

{{ funding_project.name }}

{% translate "Started" %}

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

{% if not funding_project.is_active %}
{% translate "Completed" %}

{{ funding_project.completed_at|date:"d/m/Y G:i e" }}

{% blocktranslate trimmed count days=funding_project.completed_in_days %}After {{ days }} day{% plural %}After {{ days }} days{% endblocktranslate %}

{% endif %}
{% translate "Users" %}

{{ funding_project.num_participants }}

{% if funding_project.is_active %}
{% translate "Estimated Total" %}

{{ funding_project.estimated_total|intcomma }}

{% endif %}
{% translate "Current Total" %}

{{ funding_project.current_total|intcomma }}

{% translate "Goal" %}

{{ funding_project.goal|intcomma }}

{{ funding_project.actual_percentage|floatformat }} %
{% if funding_project.is_active %}
{{ funding_project.estimated_missing_percentage|floatformat }} %
{% endif %}
{% translate "Contributors" %}
{% for summary in summaries %}
{% if funding_project.is_active %} {% endif %} {% for row in summary %} {% if funding_project.is_active %} {% endif %} {% endfor %}
{% translate "User's Main Character" %}{% translate "Estimated Total" %}{% translate "Actual Total" %}
{{ row.character_name }} {{ row.estimated_total|intcomma }}{{ row.actual_total|intcomma }}
{% endfor %}
{% if perms.allianceauth_pve.manage_funding_projects %} {% if funding_project.is_active %} {% translate "Mark As Completed" %} {% else %} {% translate "Reopen" %} {% endif %} {% endif %} {% translate "Back" %}
{% endblock pvecontent %}