{% extends "base.html" %} {% block content %}

Home

{% if current_user.is_authenticated and current_user.can_write_posts %}Dodaj news{% endif %}
{% for post in posts.items %}

{{ post.title }}

{{ post.body|safe }}

Dodano przez {{ post.author.username }}: {{ post.created_at|dt }}

{% if post.updated_at %}

Edytowal {{ post.edited_by.username }}: {{ post.updated_at|dt }}

{% endif %}
{% if can_edit_post(post) %}Edytuj{% endif %} {% if current_user.is_authenticated and current_user.is_admin %}
{% endif %}
{% else %}

Brak newsow.

{% endfor %} {% if posts.pages > 1 %} {% endif %} {% endblock %}