datatracker/ietf/templates/group/active_groups.html
Robert Sparks 461af5af19 Adds views of active areas, area groups, teams, and directorates.
Adds navigation to those views to the base menus.

Unifies URL patterns shared between group/urls and group/urls_info, 
exposing the same view at, e.g., /group/stir and /wg/stir/.

Improves testing, primarily of group/info.py 

Commit ready for merge.
 - Legacy-Id: 9924
2015-07-30 21:51:38 +00:00

28 lines
652 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block title %}Active Groups{% endblock %}
{% block content %}
{% origin %}
<h1>Active Groups</h1>
<table class="table table-condensed table-striped">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
{% for typename in grouptypes %}
<tr>
<td><a href="{% url "ietf.group.info.active_groups" group_type=typename.slug%}">{{ typename.name }}</a></td>
<td>{{ typename.desc }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}