{% extends 'allianceauth/base.html' %} {% load humanize %} {% block page_title %}PvE Dashboard{% endblock page_title %} {% block content %}

PvE Dashboard

Running Averages

  • 1 month

    {% if onemonth.actual_total %}

    {{ onemonth.actual_total|floatformat|intcomma }}

    {{ onemonth.helped_setups }} setup(s)

    {% else %}

    No activity in the last month

    {% endif %}
  • 3 months

    {% if threemonth.actual_total %}

    {{ threemonth.actual_total|floatformat|intcomma }}

    {{ threemonth.helped_setups }} setup(s)

    {% else %}

    No activity in the last 3 months

    {% endif %}
  • 6 months

    {% if sixmonth.actual_total %}

    {{ sixmonth.actual_total|floatformat|intcomma }}

    {{ sixmonth.helped_setups }} setup(s)

    {% else %}

    No activity in the last 6 months

    {% endif %}
  • 1 year

    {% if oneyear.actual_total %}

    {{ oneyear.actual_total|floatformat|intcomma }}

    {{ oneyear.helped_setups }} setup(s)

    {% else %}

    No activity in the last year

    {% endif %}
{% if is_closed_param %}
{% else %}
{% endif %} {% if open_count > 0 %}
{% for rotation in open_rots %} {% endfor %}
Name Age (days) Participants Current Total
{{ rotation.name }} {{ rotation.days_since }} {{ rotation.summary_count }} {{ rotation.estimated_total|floatformat|intcomma }}
{% else %}
No open rotations
{% endif %} {% if open_rots.paginator.num_pages > 1 %}
    {% if open_rots.has_previous %}
  • «
  • 1
  • {% else %}
  • «
  • {% endif %} {% for npage in open_rots.paginator.page_range %} {% if npage == open_rots.number %}
  • {{ npage }}
  • {% elif npage > open_rots.number|add:"-6" and npage < open_rots.number|add:"6" and npage != 1 and npage != open_rots.paginator.num_pages %}
  • {{ npage }}
  • {% endif %} {% endfor %} {% if open_rots.has_next %}
  • {{ open_rots.paginator.num_pages }}
  • »
  • {% else %}
  • »
  • {% endif %}
{% endif %} {% if perms.allianceauth_pve.manage_rotations or user.is_superuser %} New Rotation {% endif %}
{% if is_closed_param %}
{% else %}
{% endif %} {% if closed_rots.paginator.count > 0 %}
{% for rotation in closed_rots %} {% endfor %}
Name Closed On Participants Total
{{ rotation.pk }} - {{ rotation.name }} {{ rotation.closed_at }} {{ rotation.summary_count }} {{ rotation.actual_total|floatformat|intcomma }}
{% else %}
No open rotations
{% endif %} {% if closed_rots.paginator.num_pages > 1 %}
    {% if closed_rots.has_previous %}
  • «
  • 1
  • {% else %}
  • «
  • {% endif %} {% for npage in closed_rots.paginator.page_range %} {% if npage == closed_rots.number %}
  • {{ npage }}
  • {% elif npage > closed_rots.number|add:'-6' and npage < closed_rots.number|add:'6' and npage != 1 and npage != closed_rots.paginator.num_pages %}
  • {{ npage }}
  • {% endif %} {% endfor %} {% if closed_rots.has_next %}
  • {{ closed_rots.paginator.num_pages }}
  • »
  • {% else %}
  • »
  • {% endif %}
{% endif %}
{% if open_projects.count > 0 %} {% for project in open_projects %} {% endfor %}
Name Age (days) Current Total Goal Completion
{{ project.name }} {{ project.days_since }} {{ project.current_total|intcomma }} {{ project.goal|intcomma }} {{ project.current_percentage|floatformat }} %
{% else %}
No active projects
{% endif %}
{% if perms.allianceauth_pve.manage_funding_projects or user.is_superuser %} New Funding Project {% endif %}
{% if closed_projects.count > 0 %} {% for project in closed_projects %} {% endfor %}
Name Completed in (days) Goal Actual total
{{ project.name }} {{ project.completed_in_days }} {{ project.goal|intcomma }} {{ project.current_total|intcomma }}
{% else %}
No closed projects
{% endif %}
{% endblock content %}