summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/search_results.html
blob: 45d8e29c18468e2f6755f24b2e509b687f0c203c (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
{% extends "base.html" %}
{% load url from future %}
{% load gravatar %}
{% load hk_generic %}


{% block title %}
Search results for "{{ query }}"{% if mlist %} - {{ mlist.display_name|default:mlist.name|escapeemail }} {% endif %} - {{ app_name|title }}
{% endblock %}

{% block content %}

<div class="row-fluid">

{% include 'threads/month_list.html' %}

    <div id="thread-list" class="span8">

        <div class="thread-list-header page-header">
            {% if mlist %}
            <h1>{{ mlist.display_name|default:mlist.name|escapeemail }}
                <small>Search results for query "{{ query }}"</small>
            </h1>
            {% else %}
            <h1>Search results
            <small>for query "{{ query }}"</small>
            </h1>
            {% endif %}
            <ul class="thread-list-info">
                {% if mlist.display_name %}
                <li class="list-address">
                    {{ mlist.name|escapeemail }}
                </li>
                {% endif %}
                <li class="discussion">
                    {{ total }} messages
                </li>
            </ul>

            <form method="get" action="{% url 'search' %}" class="form-inline">
                <input type="hidden" name="query" value="{{ query|escape }}" />
                <input type="hidden" name="page" value="{{ messages.number }}" />
                {% if mlist %}<input type="hidden" name="list" value="{{ mlist.name }}" />{% endif %}
                <p>
                Sort mode:
                <select name="sort">
                    <option value="score"
                        {% if sort_mode == "score" %}selected{% endif %}
                        >score</option>
                    <option value="date-desc"
                        {% if sort_mode == "date-desc" %}selected{% endif %}
                        >latest first</option>
                    <option value="date-asc"
                        {% if sort_mode == "date-asc" %}selected{% endif %}
                        >earliest first</option>
                </select>
                <button type="submit" class="btn btn-small">Update</button>
                </p>
            </form>

        </div>


        {% for message in messages %}
            {% include "messages/summary_message.html" %}
        {% empty %}
            <p>Sorry no email could be found for this query.</p>
        {% endfor %}

        {% include "paginator.html" with pager=messages notbydate=True %}

    </div>

</div>

{% endblock %}

{% block additionaljs %}
<script>
$(document).ready(function() {
    $('span.expander').expander({
        slicePoint: 500,
        userCollapseText : '\n[View Less]',
        expandText : '\n[View More]',
        beforeExpand: function() {
            $(this).removeClass("collapsed");
            $(this).addClass("expanded");
        },
        onCollapse: function() {
            $(this).removeClass("expanded");
            $(this).addClass("collapsed");
        }
    });
});
</script>
{% endblock %}