{% extends "base.html" %} {% load humanize %} {% load i18n %} {% load bootstrap %} {% block content %}
{{ create_news_form | bootstrap_horizontal }}
{% csrf_token %}
{% for news in news_list %}
{{ news.title }}
{{ news.message }}
{% endfor %} {% endblock %}