{% extends "base.html" %} {% block main %} {% for n in object_list %}

{{ n.title }}

{{ n.text|safe }}
Dodane: {{ n.date|date:"Y.m.d H:i" }}, Kategorie: {% for i in n.category.all %} {{ i.name }}{% if not forloop.last %}, {% endif %} {% endfor %}

{% endfor %} {% if has_previous %}
Nowsze Wiadomości
{% endif %} {% if has_next %}
Starsze Wiadomości
{% endif %} {% endblock %}