Parent: [59a579] (diff)

Child: [ddf08c] (diff)

Download this file

site_admin_index.html    14 lines (13 with data), 386 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
{% 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 %}