{% extends "newsboard/base.html" %} {% load i18n %} {% block newsboard_action %} {% if user.is_staff %}
{% csrf_token %} {% for stream in object_list %} {% endfor %}
{% endif %} {% endblock %} {% block newsboard_content %}
{% for stream in object_list %}

{{ stream.name }} {% if user.is_staff %}
{% csrf_token %}
{% endif %}

{% endfor %}
{% endblock %}