diff options
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r-- | pyaggr3g470r/templates/feeds.html | 2 | ||||
-rw-r--r-- | pyaggr3g470r/templates/home.html | 2 | ||||
-rw-r--r-- | pyaggr3g470r/templates/unread.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/feeds.html b/pyaggr3g470r/templates/feeds.html index 0893f982..1efa0b1f 100644 --- a/pyaggr3g470r/templates/feeds.html +++ b/pyaggr3g470r/templates/feeds.html @@ -4,7 +4,7 @@ <h1>You are subscribed to the following feeds</h1> <ul> {% for feed in feeds %} - <li><a href="/feed/{{ feed.id }}">{{ feed.title }}</a></li> + <li><a href="/feed/{{ feed.oid }}">{{ feed.title }}</a></li> {% endfor %} </ul> </div><!-- /.container --> diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html index bf17356f..46842382 100644 --- a/pyaggr3g470r/templates/home.html +++ b/pyaggr3g470r/templates/home.html @@ -5,7 +5,7 @@ <div class="row"> <div class="col-md-6 col-md-offset-3"> <h1>{{ feed.title }}</h1> - <a href="/articles/{{ feed.id }}"><i class="glyphicon glyphicon-th-list"></i></a> + <a href="/articles/{{ feed.oid }}"><i class="glyphicon glyphicon-th-list"></i></a> </div> </div> {% for number in range(0, feed.articles|length-(feed.articles|length % 3), 3) %} diff --git a/pyaggr3g470r/templates/unread.html b/pyaggr3g470r/templates/unread.html index bf17356f..46842382 100644 --- a/pyaggr3g470r/templates/unread.html +++ b/pyaggr3g470r/templates/unread.html @@ -5,7 +5,7 @@ <div class="row"> <div class="col-md-6 col-md-offset-3"> <h1>{{ feed.title }}</h1> - <a href="/articles/{{ feed.id }}"><i class="glyphicon glyphicon-th-list"></i></a> + <a href="/articles/{{ feed.oid }}"><i class="glyphicon glyphicon-th-list"></i></a> </div> </div> {% for number in range(0, feed.articles|length-(feed.articles|length % 3), 3) %} |