Delta Between Two Patch Sets: MoinMoin/templates/link_list_no_item_panel.html
Issue 10915044 :
support if key is not unique + displaying links
Left Patch Set: HTML is now valid :D & improved themes/__init__.py funcs ..
Right Patch Set: updated behaviour for default ns.
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
MoinMoin/apps/frontend/views.py
MoinMoin/items/__init__.py
MoinMoin/templates/common.js
MoinMoin/templates/layout.html
MoinMoin/templates/link_list_no_item_panel.html
MoinMoin/themes/__init__.py
MoinMoin/themes/_tests/test_navi_bar.py
LEFT RIGHT
1 {% extends theme("layout.html") %} 1 {% extends theme("layout.html") %}
2 {% block content %} 2 {% block content %}
3 {% if headline %} 3 {% if headline %}
4 <h1>{{ headline }}</h1> 4 <h1>{{ headline }}</h1>
5 {% endif %} 5 {% endif %}
6 {% if fq_names %} 6 {% if fq_names %}
7 Total: {{ fq_names|count }} 7 Total: {{ fq_names|count }}
8 <ul> 8 <ul>
9 {% for fq_name in fq_names|sort(attribute='value') %} 9 {% for fq_name in fq_names|sort(attribute='value') %}
10 <li><a class="moin-fqname" href="{{ url_for('frontend.show_item', item_name=
fq_name) }}" data-fqname={{fq_name}}>{{ fq_name.value }}</a></li> 10 <li><a class="moin-fqname" href="{{ url_for('frontend.show_item', item_name=
fq_name) }}" data-fqname= " {{fq_name}} " >{{ fq_name.value }}</a></li>
11 {% endfor %} 11 {% endfor %}
12 </ul> 12 </ul>
13 {% endif %} 13 {% endif %}
14 {% endblock %} 14 {% endblock %}
LEFT RIGHT