aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/inactives.html
blob: 0d09302921a87b135625fe9d682f60963ed4aff7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "layout.html" %}
{% block content %}
<div class="container">
    <div class="jumbotron">
        <form method=get action="/inactives/">
            <p>Days of inactivity:</p>
            <input type="number" name="nb_days" class="form-control" value="{{ nb_days }}" min="0" max="1000000" step="1" size="4" style="text-align: center" />
        </form>
        <br />
        {% if inactives != [] %}
            <ul class="list-group">
            {% for item in inactives %}
                <li class="list-group-item"><a href="/feed/{{ item[0].id }}">{{ item[0].title }}</a> - {{ item[1].days }} days</li>
            {% endfor %}
            </ul>
        {% else %}
            <p>No inactive feeds.<p>
        {% endif %}
    </div>
</div><!-- /.container -->
{% endblock %}
bgstack15