{% extends 'allianceauth/base.html' %} {% load static %} {% load humanize %} {% block page_title %}PvE Dashboard{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% 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 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:"-3" and npage < open_rots.number|add:"3" 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 is_closed_param %}
{% else %}
{% endif %} {% if closed_rots.paginator.count > 0 %}
{% for rotation in closed_rots %} {% endfor %}
Name Closed On Participants Total
{{ 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:'-3' and npage < closed_rots.number|add:'3' 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 perms.allianceauth_pve.manage_rotations or user.is_superuser %} New Rotation {% endif %}
{% endblock content %}