Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1016)

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 .. Created 11 years, 9 months ago
Right Patch Set: updated behaviour for default ns. Created 11 years, 9 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
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>
Thomas.J.Waldmann 2013/07/17 11:16:33 "{{fq_name}}"
11 {% endfor %} 11 {% endfor %}
12 </ul> 12 </ul>
13 {% endif %} 13 {% endif %}
14 {% endblock %} 14 {% endblock %}
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b