Files
caminus/templates/local/list.html
2012-04-21 12:09:50 -04:00

24 lines
570 B
HTML

{% extends 'base_simple.html' %}
{% load minecraft %}
{% block title %}Users{% endblock %}
{% block sectiontitle %}Users{% endblock %}
{% block content %}
{% for group in groups %}
<h2>{{group}}</h2>
<ul class='profile-list'>
{% for user in group.user_set.all %}
<li>{% include '_profile_tile.html' with user=user %}</li>
{% endfor %}
</ul>
<br style="clear:both"/>
{% endfor %}
<h2>All Players</h2>
<ul class='profile-list'>
{% for user in profiles %}
<li>{% include '_profile_tile.html' with user=user %}</li>
{% endfor %}
</ul>
{% endblock %}