{% extends "responsive_dashboard/dashlet.html" %}
{% block dashlet_body %}
{% for alert in news_alerts %}
{{ alert }}
{% endfor %}
{% if school_year %}
Current School Year:
{% if perms.sis.change_schoolyear %}
{{ school_year }}
{% else %}
{{ school_year }}
{% endif %}
{% else %}
No School Year is active.
{% if perms.sis.change_schoolyear %}
Would you like to change it?
{%endif%}
{% endif %}
{% if marking_period %}
It is
{% if perms.schedule.change_markingperiod %}
{{ marking_period }}
{% else %}
{{ marking_period }}
{% endif %}
which ends on {{ marking_period.end_date }}.
{% else %}
It is not currently a marking period.
{% if next_marking_period %}
{{ next_marking_period }} starts on {{ next_marking_period.start_date }}
{% else %}
There is no future marking period.
{% if perms.schedule.change_markingperiod %}
Would you like to schedule a new one?
{% endif %}
{% endif %}
{% endif %}