##// END OF EJS Templates
last changes
last changes

File last commit:

r219:5b7b585249bb
r334:ff9b4f433b43
Show More
confirm.html
34 lines | 1.0 KiB | text/html | HtmlDjangoLexer
Juan C. Espinoza
Add rc config mods...
r23 {% extends 'base.html' %}
Juan C. Espinoza
Add Change IP function for DDS Device...
r219 {% load bootstrap3 %}
Juan C. Espinoza
Add rc config mods...
r23
{% block content-title %}{{title}}{% endblock %}
{% block content-suptitle %}{{suptitle}}{% endblock %}
{% block content %}
<form action="" method="post" class="form">{% csrf_token %}
Juan C. Espinoza
Add Change IP function for DDS Device...
r219 {% if form %}
{% bootstrap_form form layout='horizontal' size='medium' %}
<div style="clear: both;"></div>
{% endif %}
Juan C. Espinoza
Update views and templates of main app...
r89 {% if delete %}
Juan C. Espinoza
Add rc config mods...
r23 <h3>Are you sure you wish to delete: {{ object }}?</h3>
{% else %}
Juan C. Espinoza
Add Change IP function for DDS Device...
r219 {% if message %}
<p>{{ message }}</p>
{% else %}
<h4>Are you sure you wish to proceed?</h4>
{% endif %}
{% endif %}
Juan C. Espinoza
Add rc config mods...
r23 <br>
Juan C. Espinoza
Update views and templates of main app...
r89 <div class="pull-right">
Juan C. Espinoza
Add rc config mods...
r23 <button class="btn btn-primary" type="submit">
<span class="glyphicon glyphicon-ok" aria-hidden="true"></span> Yes
</button>
<button type="button" class="btn btn-primary" onclick="{% if previous %}window.location.replace('{{ previous }}');{% else %}history.go(-1);{% endif %}">
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span> No
</button>
Juan C. Espinoza
Update views and templates of main app...
r89 </div>
Juan C. Espinoza
Add rc config mods...
r23 </form>
Juan C. Espinoza
Update views and templates of main app...
r89
Juan C. Espinoza
Add rc config mods...
r23 {% endblock %}