Parent: [83924b] (diff)
Child: [875040] (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><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 %}