blob: caa3415d7691a7c0b3e52a7368b862f0318ddaeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "layout.html" %}
{% block content %}
<div class="container">
<div class="jumbotron">
<h1>{{ feed.title }}</h1>
<p>This feed contains {{ feed.articles|count }} <a href="/articles/{{ feed.id }}">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>
<a href="/delete_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-remove"></i></a>
</div>
</div><!-- /.container -->
{% endblock %}
|