{% extends 'assignment_desk/base.html' %} {% load bootstrap3 static %} {% block html_title %}Create assignment list | {{ block.super }}{% endblock %} {% block body_class %}week-confirm-delete{% endblock %} {% block back_nav_link %}{% url 'assignment-desk:week-list' %}{% endblock %} {% block nav_header %}Delete {{ week.role_type.name }} assignments Week of {{ week.beginning_date|date:"N j" }}{% endblock %} {% block content %}
{% bootstrap_messages %}

Confirm deletion

Are you sure you want to delete the assignment list for the {{ week.role_type }} department for the week of {{ week.beginning_date|date:"N j, Y" }}?

{% csrf_token %}
{% bootstrap_button 'Yes, I\'m sure' extra_classes='btn-danger' button_type='submit' %} {% url 'assignment-desk:week-list' as cancel_delete %} {% comment %} {% url 'assignment-desk:week-edit' pk=week.pk as cancel_delete %} {% endcomment %} {% bootstrap_button 'No, take me back' extra_classes='btn-danger-flat' button_type='link' href=cancel_delete %}
{% endblock %} {% block scripts %} {% endblock %}