summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/ajax/votes.html
blob: abe512e76c386c5490e6c3c8059918f3fb635f88 (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
{% load url from future %}
{% load i18n %}
{% load hk_generic %}

    {% if votes %}
        <table class="table table-striped table-bordered table-condensed">
            <thead>
                <tr>
                    <th>List</th>
                    <th>Subject</th>
                    <th>Author</th>
                    <th>Date</th>
                    <th>Vote</th>
                </tr>
            </thead>
            <tbody>
            {% for vote in votes %}
                <tr>
                    <td>{{ vote.list_address }}</td>
                    <td><a href="{% url 'message_index' mlist_fqdn=vote.list_address message_id_hash=vote.messageid %}"
                            >{{ vote.message.subject }}</a></td>
                    <td>{{ vote.message.sender_name }}</td>
                    <td>{{ vote.message|get_date|date:"l, j F Y H:i:s" }}</td>
                    <td>
                        <form method="post" class="likeform"
                              action="{% url 'message_vote' mlist_fqdn=vote.list_address message_id_hash=vote.messageid %}">
                            {% csrf_token %}
                            <input type="hidden" name="vote" value="0" />
                            {% if vote.vote == 1 %}
                            <span class="youlike">You like it
                            {% elif vote.vote == -1 %}
                            <span class="youdislike">You dislike it
                            {% endif %}
                            (<a href="#cancelvote" class="cancel">cancel</a>)</span>
                        </form>
                    </td>
                </tr>
            {% endfor %}
            </tbody>
        </table>
        {% include "paginator.html" with pager=votes page_key="vpage" %}
    {% else %}
        <p>No vote yet.</p>
    {% endif %}