{% extends 'base.html' %} {% load commonmark %} {% block content %}
{% if draft %}
This news item is not yet public. It will become public at {{ news_item.published_at|date:'Y-m-d H:i' }}.
{% endif %}

{{ news_item.title }} {{ news_item.published_at|date:"Y-m-d" }}

{{ news_item.content|commonmark }} {% endblock %}