component_template_delete.html 381 B

12345678910111213
  1. {% extends 'utilities/confirmation_form.html' %}
  2. {% load form_helpers %}
  3. {% block title %}Delete device type components?{% endblock %}
  4. {% block message %}
  5. <p>Are you sure you want to delete these components from <strong>{{ devicetype }}</strong>?</p>
  6. <ul>
  7. {% for o in selected_objects %}
  8. <li>{{ o }}</li>
  9. {% endfor %}
  10. </ul>
  11. {% endblock %}