{% extends 'base.html' %} {% block main %}
{% for announcement in announcements %}

{{ announcement.title }}

{{ announcement.message | safe }}
{% endfor %}
{% if request.user.is_superuser %} {% include 'service_catalog/admin/dashboard.html' %} {% else %} {% include 'service_catalog/customer/dashboard.html' %} {% endif %}
{% endblock %}