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

{{ funding_project.name }}

Started

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

{% if not funding_project.is_active %}
Completed

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

After {{ funding_project.completed_in_days }} days

{% endif %}
Users

{{ funding_project.num_participants }}

{% if funding_project.is_active %}
Estimated Total

{{ funding_project.estimated_total|intcomma }}

{% endif %}
Current Total

{{ funding_project.current_total|intcomma }}

Goal

{{ funding_project.goal|intcomma }}

{{ funding_project.actual_percentage|floatformat }} %
{% if funding_project.is_active %}
{{ funding_project.estimated_missing_percentage|floatformat }} %
{% endif %}
Contributors
{% for summary in summaries %}
{% if funding_project.is_active %} {% endif %} {% for row in summary %} {% if funding_project.is_active %} {% endif %} {% endfor %}
User's Main CharacterEstimated TotalActual 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 %} Mark As Completed {% else %} Reopen {% endif %} {% endif %} Back
{% endblock pvecontent %}