Parent: [c11e9c] (diff)

Child: [eb6650] (diff)

Download this file

neigh_top_nav.html    24 lines (24 with data), 797 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
{% if neighborhood %}
<a href="{{neighborhood.url()}}" class="ui-icon-tool-home">
Home
{% if request.url.rfind(neighborhood.url(), - neighborhood.url()|length) != -1 %}
<span class="arrow"></span>
{% endif %}
</a>
{% if h.has_neighborhood_access('admin', neighborhood)() %}
<a href="{{neighborhood.url()}}_admin/" class="ui-icon-tool-admin">
Admin
{% if neighborhood.url()+'_admin' in request.url %}
<span class="arrow"></span>
{% endif %}
</a>
{% endif %}
{% if h.has_neighborhood_access('moderate', neighborhood)() %}
<a href="{{neighborhood.url()}}_moderate/" class="ui-icon-tool-admin">
Moderate
{% if neighborhood.url()+'_moderate' in request.url %}
<span class="arrow"></span>
{% endif %}
</a>
{% endif %}
{% endif %}