[mod] list all engines of a result

This commit is contained in:
Adam Tauber 2015-10-03 17:46:12 +02:00
parent b6c3cb0bdd
commit 5eabba2da1
3 changed files with 10 additions and 1 deletions

Binary file not shown.

View File

@ -76,3 +76,8 @@
margin-top: 30px;
padding-bottom: 50px;
}
.label-default {
color: #AAA;
background: #FFF;
}

View File

@ -25,7 +25,11 @@
<!-- Draw result footer -->
{% macro result_footer(result) -%}
<div class="clearfix"></div>
<span class="label label-default pull-right">{{ result.engine }}</span>
<div class="pull-right">
{% for engine in result.engines %}
<span class="label label-default">{{ engine }}</span>
{% endfor %}
</div>
<p class="text-muted">{{ result.pretty_url }}</p>
{%- endmacro %}