24 lines
		
	
	
		
			570 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			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 %}
 |