{% extends "news/base_blog.html" %} {% load url from future %} {% block content %}

Back to main news list

{{ object.title }}

{% if object.summary %}

{{object.summary}}

{% endif %}

{{ object.body|safe }}

{% if object.author.first_name and object.author.last_name %}

Published by {{object.author.first_name}} {{object.author.last_name}} on {{ object.modified_on|date:"F j, Y" }}

{% else %}

Published by {{object.author.username}} on {{ object.modified_on|date:"F j, Y" }}

{% endif %}

Tags :: {% for tag in object.tags.all %} {{ tag.name }}{% if not forloop.last %}, {% endif %} {% endfor %}

{% endblock %}