Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
{% end %}
{% if post.published_at %}
- {{ locale.format_date(post.published_at, shorter=True, relative=False) }}
+ {% if post.updated_at and post.updated_at > post.published_at %}
+ {{ locale.format_date(post.published_at, shorter=True, relative=False) }},
+ {{ _("Updated %s") % locale.format_date(post.updated_at, shorter=True) }}
+ {% else %}
+ {{ locale.format_date(post.published_at, shorter=True, relative=False) }}
+ {% end %}
{% else %}
{{ _("Not published") }}
{% end %}