aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/feed.html
blob: 5808f233a9b11e20e83c227d484b568e1ff4c157 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "layout.html" %}
{% block content %}
<div class="container">
    <div class="jumbotron">
        <h2>{{ feed.title }}</h2>
        <a href="/delete_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-remove" title="Delete this feed"></i></a>
        <p>This feed contains {{ feed.articles|count }} <a href="/articles/{{ feed.oid }}">articles</a>.</p>
        <p>Address of the feed: <a href="{{ feed.link }}">{{ feed.link }}</a>.</p>
        <p>Address of the site: <a href="{{ feed.site_link }}">{{ feed.site_link }}</a>.</p>
    </div>
</div><!-- /.container -->
{% endblock %}
bgstack15