diff --git a/news/templates/news/newsitem_list.html b/news/templates/news/newsitem_list.html index f05453c..2600862 100644 --- a/news/templates/news/newsitem_list.html +++ b/news/templates/news/newsitem_list.html @@ -5,11 +5,6 @@ {% if object_list %} {% if category %}

{{ category }} News

- - - - - {% elif tag %}

News for tag: {{ tag }}

{% else %} @@ -17,14 +12,16 @@ {% endif %}
- {% for news in object_list %} + {% for newsitem in object_list %}
- {{ news.title }} -
+ {{ newsitem.title }} +
+ {{ newsitem.body_as_markdown|safe }} +
- {{ news.category }} - • {{ news.created | date:'jS \o\f F, Y' }} + {{ newsitem.category }} + • {{ newsitem.created_at | date:'jS \o\f F, Y' }} {% include 'news/includes/display_tags.html' %}