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

{% trans "Bulletins" %}

{% if bulletin_list.count == 0 %}

No bulletins to show! Why don't you create a new bulletin?

{% else %}
{% for bulletin in bulletin_list %}
{{ bulletin.title }} {% if request.user.is_authenticated %} Edit {% endif %}
{% if bulletin.description %}

{{ bulletin.description }}

{% endif %}
{% endfor %}

RSS Feed

{% endif %} {% endblock %}