Skip to content

Commit

Permalink
Merge pull request #9595 from albertkol/fix-16-04-links
Browse files Browse the repository at this point in the history
Fix 16-04 links
  • Loading branch information
albertkol committed Apr 22, 2021
2 parents 366dec7 + e9dbf1e commit df94fab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion templates/16-04/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ <h2>Ubuntu 16.04 LTS security updates</h2>
{% for notice in latest_notices %}
<hr>
<div class="col-6">
<strong><span><a>{{ notice.title }}</a></span></strong><br>
<strong><span><a href="/security/notices/{{ notice.id }}">{{ notice.title }}</a></span></strong><br>
<span class="p-muted-heading">{{ notice.date }}</span><br><br>
</div>
<div class="col-6">
Expand Down
1 change: 1 addition & 0 deletions webapp/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ def sixteen_zero_four():

latest_notices = [
{
"id": notice.get("id"),
"title": notice.get("title"),
"date": dateutil.parser.parse(
notice.get("published")
Expand Down

0 comments on commit df94fab

Please sign in to comment.