Mercurial > moin > 2.0
view MoinMoin/templates/link_list_item_panel.html @ 2851:5a49eeb1f307
add spaces to jinja2 expressions, add tests for missing spaces to coding_std.py
author | RogerHaase <haaserd@gmail.com> |
---|---|
date | Wed, 19 Nov 2014 11:51:19 -0700 |
parents | 2b9472c863db |
children | 54face4c8ae9 |
line wrap: on
line source
{% extends theme("show.html") %} {% block content %} {% if headline %} <h1>{{ headline }}</h1> {% endif %} {% if fq_names %} Total: {{ fq_names|count }} <ul class="moin-link-list"> {% for fq_name in fq_names|sort(attribute='value') %} <li><a class="moin-fqname" href="{{ url_for('frontend.show_item', item_name=fq_name) }}" data-fqname="{{ fq_name }}">{{ fq_name.value }}</a></li> {% endfor %} </ul> {% endif %} {% endblock %}