{% extends base_template|default:"djangohelpers_base.htm" %} {% load staticfiles %} {% load user_tags %} {% block content %}
{{ page_title }}

{{ page_subtitle }}

{% for item in item_list %}

{{ item.title }}

{{ item.text }}

{% endfor %} {% if request.user|has_group:protected_group_name %} {% for item in protected_item_list %}

{{ item.title }}

{{ item.text }}

{% endfor %} {% endif %}
{% endblock %}