Child: [59a579] (diff)
Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13
{% set page="index" %} {% extends 'site_admin.html' %} {% block content %} <h2>Neighborhood Stats</h2> <table> <thead> <tr><th>Name<th>Projects<th>Configured</tr> </thead> {% for name, count, count_configured in neighborhoods %} <tr><td>{{name}}<td>{{count}}<td>{{count_configured}}</tr> {% endfor %} </table> {% endblock %}