blob: a2c0e806faff03c0ea038c8212c68d724d85fa29 [file] [log] [blame]
{% set page="index" %}
{% extends 'allura:templates/site_admin.html' %}
{% block content %}
<h2>Neighborhood Stats</h2>
<table>
<thead>
<tr><th>Name</th><th>Projects</th><th>Configured</th></tr>
</thead>
{% for name, count, count_configured in neighborhoods %}
<tr><td>{{name}}</td><td>{{count}}</td><td>{{count_configured}}</td></tr>
{% endfor %}
</table>
{% endblock %}