{% extends 'allianceauth/base.html' %} {% load humanize %} {% load evelinks %} {% load pvefilters %} {% block page_title %}Funding Project Details{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}

{{ funding_project.name }}

Funding Project

  • 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" }}

    {{ funding_project.completed_in_days }} days

  • {% endif %}
  • Users

    {{ funding_project.num_participants }}

  • Current Total

    {{ funding_project.current_total|intcomma }}

  • Goal

    {{ funding_project.goal|intcomma }}


{% min_value 100 funding_project.current_percentage as width %}
{{ funding_project.current_percentage|floatformat }} %

Contributors

{% for summary in summaries %}
{% for row in summary %} {% endfor %}
User's Main Character Total
{{ row.character_name }} {{ row.actual_total|intcomma }}
{% endfor %}
Back {% if perms.allianceauth_pve.manage_funding_projects %} {% if funding_project.is_active %} Mark As Completed {% else %} Reopen {% endif %} {% endif %}
{% endblock content %}