summaryrefslogtreecommitdiff
path: root/templates/news
diff options
context:
space:
mode:
Diffstat (limited to 'templates/news')
-rw-r--r--templates/news/list.html2
-rw-r--r--templates/news/view.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/news/list.html b/templates/news/list.html
index 258456a5..14ba79b6 100644
--- a/templates/news/list.html
+++ b/templates/news/list.html
@@ -28,7 +28,7 @@
<tbody>
{% for item in news_list %}
<tr class="{% cycle 'odd' 'even' %}">
- <td>{{ item.postdate }}</td>
+ <td>{{ item.postdate|date }}</td>
<td class="wrap"><a href="{{ item.get_absolute_url }}"
title="View: {{ item.title }}">{{ item.title }}</a></td>
<td>{{ item.author.get_full_name }}</td>
diff --git a/templates/news/view.html b/templates/news/view.html
index a7c25a43..1c92fe78 100644
--- a/templates/news/view.html
+++ b/templates/news/view.html
@@ -16,7 +16,7 @@
</ul>
{% endif %}
- <p class="article-info">{{ news.postdate }} - {{ news.author.get_full_name }}</p>
+ <p class="article-info">{{ news.postdate|date }} - {{ news.author.get_full_name }}</p>
<div class="article-content">{{ news.content|markdown }}</div>