summaryrefslogtreecommitdiff
path: root/searx/templates/legacy/results.html
blob: 2e28bc91fc40c7bb2e7121d2ed9e56011fab21ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{% extends "legacy/base.html" %}
{% block title %}{{ q|e }} - {% endblock %}
{% block meta %}<link rel="alternate" type="application/rss+xml" title="Searx search: {{ q|e }}" href="{{ url_for('index') }}?q={{ q|urlencode }}&amp;format=rss&amp;{% for category in selected_categories %}category_{{ category }}=1&amp;{% endfor %}pageno={{ pageno }}">{% endblock %}
{% block content %}
<div class="preferences_container right"><a href="{{ url_for('preferences') }}" id="preferences"><span>preferences</span></a></div>
<div class="small search center">
    {% include 'legacy/search.html' %}
</div>
<div id="results">
    <div id="sidebar">

        <div id="search_url">
            {{ _('Search URL') }}:
            <input type="text" value="{{ base_url }}?q={{ q|urlencode }}{% if selected_categories %}&amp;categories={{ selected_categories|join(",") | replace(' ','+') }}{% endif %}{% if pageno > 1 %}&amp;pageno={{ pageno }}{% endif %}" readonly />
        </div>
        <div id="apis">
        {{ _('Download results') }}
        {% for output_type in ('csv', 'json', 'rss') %}
        <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
            <div class="left">
            <input type="hidden" name="q" value="{{ q|e }}" />
            <input type="hidden" name="format" value="{{ output_type }}" />
            {% for category in selected_categories %}
            <input type="hidden" name="category_{{ category }}" value="1"/>
            {% endfor %}
            <input type="hidden" name="pageno" value="{{ pageno }}" />
            <input type="submit" value="{{ output_type }}" />
            </div>
        </form>
        {% endfor %}
        </div>
    </div>

    {% if answers %}
    <div id="answers"><span>{{ _('Answers') }}</span>
        {% for answer in answers %}
        <span>{{ answer }}</span>
        {% endfor %}
    </div>
    {% endif %}

    {% if suggestions %}
    <div id="suggestions"><span id="suggestions-title">{{ _('Suggestions') }} : </span>
        {% set first = true %}
        {% for suggestion in suggestions %}
        {% if not first %} &bull; {% endif %}<form method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
            <input type="hidden" name="q" value="{{ suggestion.url }}">
            <input type="submit" class="suggestion" value="{{ suggestion.title }}" />
        </form>
        {% set first = false %}
        {% endfor %}
    </div>
    {% endif %}

    {% if infoboxes %}
    <div id="infoboxes">
      {% for infobox in infoboxes %}
         {% include 'legacy/infobox.html' %}
      {% endfor %}
    </div>
    {% endif %}

    {% for result in results %}
        {% if result['template'] %}
            {% include get_result_template('legacy', result['template']) %}
        {% else %}
            {% include 'legacy/result_templates/default.html' %}
        {% endif %}
    {% endfor %}

    {% if paging %}
    <div id="pagination">
        {% if pageno > 1 %}
            <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
                <div class="{% if rtl %}right{% else %}left{% endif %}">
                <input type="hidden" name="q" value="{{ q|e }}" />
                {% for category in selected_categories %}
                <input type="hidden" name="category_{{ category }}" value="1"/>
                {% endfor %}
                <input type="hidden" name="pageno" value="{{ pageno-1 }}" />
                <input type="submit" value="<< {{ _('previous page') }}" />
                </div>
            </form>
        {% endif %}
        <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
            <div class="{% if rtl %}left{% else %}right{% endif %}">
                {% for category in selected_categories %}
                <input type="hidden" name="category_{{ category }}" value="1"/>
                {% endfor %}
                <input type="hidden" name="q" value="{{ q|e }}" />
                <input type="hidden" name="pageno" value="{{ pageno+1 }}" />
                <input type="submit" value="{{ _('next page') }} >>" />
            </div>
        </form>

        <br />
    </div>
    {% endif %}
</div>
{% endblock %}