Commit 12ed49ac by Kálmán Viktor

network: bootstrap confirm buttons

parent 4215b300
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<p>Are you sure you want to remove hostgroup <strong>"{{ group }}"</strong> <p>Are you sure you want to remove hostgroup <strong>"{{ group }}"</strong>
from <strong>"{{ host }}"</strong>?</p> from <strong>"{{ host }}"</strong>?</p>
<input type="hidden" value="{{ request.GET.from }}" name="next" /> <input type="hidden" value="{{ request.GET.from }}" name="next" />
<input type="submit" value="Confirm" /> <a href="{{ request.GET.from }}" class="btn btn-info">Back</a>
<input type="submit" class="btn btn-danger" value="Confirm" />
</form> </form>
{% endblock %} {% endblock %}
...@@ -9,7 +9,8 @@ ...@@ -9,7 +9,8 @@
<form action="" method="post">{% csrf_token %} <form action="" method="post">{% csrf_token %}
<p>Are you sure you want to delete <strong>"{{ object }}"</strong>?</p> <p>Are you sure you want to delete <strong>"{{ object }}"</strong>?</p>
<input type="hidden" value="{{ request.GET.from }}" name="next" /> <input type="hidden" value="{{ request.GET.from }}" name="next" />
<input type="submit" value="Confirm" /> <a href="{{ request.GET.from }}" class="btn btn-info">Back</a>
<input type="submit" class="btn btn-danger" value="Confirm" />
</form> </form>
{% endblock %} {% endblock %}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment