Parent: [b47c46] (diff)

Child: [ddf08c] (diff)

Download this file

neighborhood_list.html    32 lines (26 with data), 705 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{% extends g.theme.master %}
{% block title %}{{title}}{% endblock %}
{% block header %}{{title}}{% endblock %}
{% block extra_css %}
<style type="text/css">
.no-nbhds {
text-align: center;
font-style: italic;
}
</style>
{% endblock %}
{% block content %}
{{ text if text }}
<table>
<thead>
<tr><th>Neighborhood</th></tr>
</thead>
<tbody>
{% for nbhd in neighborhoods %}
<tr><td class="nbhd"><a href="{{nbhd.url()}}">{{nbhd.name}}</a></td></tr>
{% else %}
<tr><td class="no-nbhds">No neighborhoods found</td></tr>
{% endfor %}
</tbody>
</table>
{% endblock %}