aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/duplicates.html
blob: a7eff2d0bb3185fd0c49b19eefd3107bcd93cd35 (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
{% extends "layout.html" %}
{% block content %}
<div class="container">
    {% if duplicates != [] %}
        <p><h1>{{ _('Duplicates in the feed') }} <a href="/feed/{{ feed.id }}">{{ feed.title }}</a>.</h1><p>
        <div class="table-responsive">
            <table class="table table-striped">
                <thead>
                    <tr>
                        <th>#</th>
                        <th></th>
                        <th></th>
                    </tr>
                </thead>
                <tbody>
                {% for pair in duplicates %}
                    <tr>
                        <td>{{ loop.index }}</td>
                        <td><a href="/delete/{{ pair[0].id }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this article') }}"></i></a>&nbsp;<a href="/article/{{ pair[0].id }}">{{ pair[0].title }}</a></td>
                        <td><a href="/delete/{{ pair[1].id }}"><i class="glyphicon glyphicon-remove" title="{{ _('Delete this article') }}"></i></a>&nbsp;<a href="/article/{{ pair[1].id }}">{{ pair[1].title }}</a></td>
                    </tr>
                {% endfor %}
                </tobdy>
            </table>
        </div>
    {% else %}
        <p><h1>{{ _('No duplicates in the feed') }} <a href="/feed/{{ feed.id }}">{{ feed.title }}</a>.</h1><p>
    {% endif %}
</div><!-- /.container -->
{% endblock %}
bgstack15