~lutostag/ubuntu/trusty/maas/1.5.4+keystone

« back to all changes in this revision

Viewing changes to src/maasserver/templates/maasserver/settings_confirm_delete_commissioning_script.html

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez
  • Date: 2013-03-04 11:49:44 UTC
  • mto: This revision was merged to the branch mainline in revision 25.
  • Revision ID: package-import@ubuntu.com-20130304114944-azcvu9anlf8mizpa
Tags: upstream-1.3+bzr1452+dfsg
Import upstream version 1.3+bzr1452+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "maasserver/base.html" %}
 
2
 
 
3
{% block title %}Delete commissioning script{% endblock %}
 
4
{% block page-title %}Delete commissioning script{% endblock %}
 
5
 
 
6
{% block content %}
 
7
  <div class="block auto-width">
 
8
    <h2>
 
9
      Are you sure you want to delete the commissioning script
 
10
      '{{ script_to_delete.name }}'?
 
11
      <br />
 
12
    </h2>
 
13
      <p>This action is permanent and can not be undone.</p>
 
14
      <p>
 
15
        <form action="." method="post">{% csrf_token %}
 
16
          <input type="hidden" name="post" value="yes" />
 
17
          <input type="submit" value="Delete commissioning script"
 
18
                 class="right" />
 
19
          <a href="{% url 'settings' %}#commissioning_scripts">Cancel</a>
 
20
        </form>
 
21
      </p>
 
22
  </div>
 
23
{% endblock %}