aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/inactives.html
blob: f245fc1b9302ea11a8d203b6b108a3cf7725494b (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">
        {% if inactives != [] %}
            <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 />
            <ul class="list-group">
            {% for item in inactives %}
                <li class="list-group-item"><a href="/feed/{{ item[0].oid }}">{{ item[0].title }}</a> - {{ item[1].days }} days</li>
            {% endfor %}
            </ul>
        {% else %}
            <p>No inactive feeds.<p>
        {% endif %}
    </div>
</div><!-- /.container -->
{% endblock %}
bgstack15