ccdb-api/ccdb/templates/users/user_list.html
Matthew Dillon 7ba937ef66 INITIAL
2016-01-19 15:10:09 -07:00

14 lines
388 B
HTML

{% extends "base.html" %}
{% load static %}{% load i18n %}
{% block title %}Members{% endblock %}
{% block content %}
<h2>Users</h2>
<div class="list-group">
{% for user in user_list %}
<a href="{% url 'users:detail' user.username %}" class="list-group-item">
<h4 class="list-group-item-heading">{{ user.username }}</h4>
</a>
{% endfor %}
</div>
{% endblock content %}