diff options
| author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-10-05 15:29:21 +0200 |
|---|---|---|
| committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-10-05 15:46:43 +0200 |
| commit | c36c935b03cc87ddfcac5ce3ded333be73387a7a (patch) | |
| tree | 5c850f1f4520e5c0082cbdf8c63be48705aab645 /searx/templates/oscar/results.html | |
| parent | 517e57b996aaeceda08afd0e80bfd30ad6192971 (diff) | |
oscar template: add infobox
Diffstat (limited to 'searx/templates/oscar/results.html')
| -rw-r--r-- | searx/templates/oscar/results.html | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/searx/templates/oscar/results.html b/searx/templates/oscar/results.html index 6b02dc7bd..0bf4914b4 100644 --- a/searx/templates/oscar/results.html +++ b/searx/templates/oscar/results.html @@ -47,9 +47,7 @@ {% if suggestions %}
<div class="panel panel-default">
<div class="panel-heading">
- <h4 class="panel-title">
- <a data-toggle="collapse" data-parent="#accordion" href="#suggestions">{{ _('Suggestions') }}</a>
- </h4>
+ <h4 class="panel-title">{{ _('Suggestions') }}</h4>
</div>
<div class="panel-body">
{% for suggestion in suggestions %}
@@ -64,9 +62,7 @@ <div class="panel panel-default">
<div class="panel-heading">
- <h4 class="panel-title">
- <a data-toggle="collapse" data-parent="#accordion" href="#links">{{ _('Links') }}</a>
- </h4>
+ <h4 class="panel-title">{{ _('Links') }}</h4>
</div>
<div class="panel-body">
<form role="form">
@@ -91,6 +87,12 @@ </div>
</div>
+ {% if infoboxes %}
+ {% for infobox in infoboxes %}
+ {% include 'oscar/infobox.html' %}
+ {% endfor %}
+ {% endif %}
+
</div><!-- /#sidebar_results -->
</div>
{% endblock %}
|