{% extends 'backoffice/base.html' %} {% load i18n %} {% load humanize %} {% block content %} User has {{ paginator.count }} publicly visible Board entries.
{% csrf_token %} {% for entry in page_obj %}
{{ entry.owner.username }} @ {{ entry.timestamp | naturaltime }}

{{ entry.title }}

{{ entry.text_html | safe }}
{% endfor %}
{% endblock %}