diff --git a/boards/templates/boards/post.html b/boards/templates/boards/post.html
--- a/boards/templates/boards/post.html
+++ b/boards/templates/boards/post.html
@@ -18,7 +18,7 @@
onclick="javascript:addQuickReply('{{ post.id }}'); return false;"
title="{% trans 'Quote' %}" {% endif %}>({{ post.get_absolute_id }})
{{ post.title }}
- {{ post.pub_time }}
+ {{ post.pub_time|date:'r' }}
{% comment %}
Thread death time needs to be shown only if the thread is alredy archived
and this is an opening post (thread death time) or a post for popup
diff --git a/boards/templates/boards/thread.html b/boards/templates/boards/thread.html
--- a/boards/templates/boards/thread.html
+++ b/boards/templates/boards/thread.html
@@ -85,7 +85,7 @@
[-]
{{ thread.get_reply_count }}/{{ max_replies }} {% trans 'messages' %},
{{ thread.get_images_count }} {% trans 'images' %}.
- {% trans 'Last update: ' %}{{ thread.last_edit_time }}
+ {% trans 'Last update: ' %}{{ thread.last_edit_time|date:'r' }}
[RSS]
{% endcache %}
diff --git a/boards/templates/boards/thread_gallery.html b/boards/templates/boards/thread_gallery.html
--- a/boards/templates/boards/thread_gallery.html
+++ b/boards/templates/boards/thread_gallery.html
@@ -58,7 +58,7 @@
{{ thread.get_reply_count }}/{{ max_replies }}
{% trans 'messages' %},
{{ thread.get_images_count }} {% trans 'images' %}.
- {% trans 'Last update: ' %}{{ thread.last_edit_time }}
+ {% trans 'Last update: ' %}{{ thread.last_edit_time|date:'r' }}
[RSS]
{% endcache %}