{% comment %} vim:ft=htmldjango: This file contains the simple way to render a news item {% endcomment %} {% load news markup tagging_tags %}
{% tags_for_object object as tag_list %} {% if tag_list %} {% endif %}
{# TODO: categories! #} {{ object.title }}
Posted by {{object.author}} on {{ object.publish|date:"j F Y" }}
{% comment %} TODO: post picture Developers {% endcomment %}
{{ object.body|markdown:"safe" }}
Tags: {% for tag in tag_list %} {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %}