2 <h3>{% blocktranslate with filter_title=title %} By {{ filter_title }} {% endblocktranslate %}</h3>
4 function longFilter(f) {
8 $('li', ul).each(function(i, e) {
9 $(this).css('display', ($(e).text().search(v) != -1) ? 'block' : 'none');
13 <input style="margin: 0 15px" onkeyup="longFilter(this)">
14 <ul class="longfilter" style="word-wrap: anywhere; max-height:400px; overflow:hidden;">
15 {% for choice in choices %}
16 <li{% if choice.selected %} class="selected"{% endif %}>
17 <a href="{{ choice.query_string|iriencode }}" title="{{ choice.display }}">{{ choice.display }}</a></li>