{% extends "dawdle/base.html" %} {% load static %} {% load duration %} {% load alignment %} {% load split %} {% load lvlsum %} {% block content %}

Players

{% for p in object_list %} {% endfor %}
Rank Name Next level IRC User Items iTotal Allies Total Idled
#{{forloop.counter}} {% if p.online %}
                                                  On
                                                  {% else %}
                                                  Off
                                                  {% endif %} {{p.name}} the {{p.alignment|alignment}} level {{p.level}} {{p.cclass}} {{p.nextlvl|duration}} {{ p.userhost|split:"!"|first}} [{% for item in p.item_set.all|dictsort:"slot" %}{% if item.level > 0 %} 0 %}"{{item.slot}}: {{item.name}} Lvl: {{item.level}}"{% else %}"{{item.slot}}: L{{item.level}}"{% endif %}>{%if item.name|length > 0 %}{%endif%}{{item.slot|slice:":1"}}{%if item.name|length > 0 %}{%endif%}{% endif %}{% endfor %}] {{p.item_set | lvlsum}} {% for ally in p.ally_set.all|dictsort:"slot" %} {% if ally.name != "" %} {{ally.name}} the {%endif%} {{ally.fullclass}} {% endfor %} {{p.idled |duration}}
Player Map
{% for p in object_list %} {{p.name}} {% endfor %}
{% endblock %}