aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/feed.html
blob: 1ad279471c6f712f857f55666d84c4c33f2d5702 (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
{% extends "layout.html" %}
{% block content %}
<div class="container">
    <div class="jumbotron">
        <h2>{{ feed.title }}</h2>
        {% if feed.description %} <p>{{ feed.description }}</p> {% endif %}
        <a href="/delete_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-remove" title="Delete this feed"></i></a>
        <a href="/edit_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a>
    </div>
    <div class="jumbotron">
        <p>
        This feed contains {{ feed.articles|count }} <a href="/articles/{{ feed.oid }}">articles</a>.<br />
        Address of the feed: <a href="{{ feed.link }}">{{ feed.link }}</a>.<br />
        Address of the site: <a href="{{ feed.site_link }}">{{ feed.site_link }}</a>.<br />
        {% if feed.articles|count != 0 %}
            The last article was posted {{ elapsed.days }} day(s) ago.<br />
            Daily average: {{ average }}, between the {{ first_post_date.strftime('%Y-%m-%d') }} and the {{ end_post_date.strftime('%Y-%m-%d') }}.
        {% endif %}
        </p>
    </div>
    <div class="jumbotron">
        {% if feed.articles|count != 0 %}
            <div>{{ tag_cloud|safe }}</div>
        {% endif %}
    </div>
</div><!-- /.container -->
{% endblock %}
bgstack15