##// END OF EJS Templates
Update RC models, views, templates & statics...
Update RC models, views, templates & statics Update requirements for plot pulses git-svn-id: http://jro-dev.igp.gob.pe/svn/jro_hard/radarsys/trunk/webapp@66 aa17d016-51d5-4e8b-934c-7b2bbb1bbe71

File last commit:

r45:f516e8aeadc3
r45:f516e8aeadc3
Show More
confirm.html
30 lines | 1.0 KiB | text/html | HtmlDjangoLexer
{% extends 'base.html' %}
{% block content-title %}{{title}}{% endblock %}
{% block content-suptitle %}{{suptitle}}{% endblock %}
{% block content %}
<form action="" method="post" class="form">{% csrf_token %}
{% if next %}
<input name="next" type="hidden" value="{{ next }}" />
{% endif %}
{% if delete_view %}
{% if object_name %}
<h3>Are you sure you wish to delete {{ object_name }} from {{ object }}?</h3>
{% else %}
<h3>Are you sure you wish to delete: {{ object }}?</h3>
{% endif %}
{% else %}
<h4>Are you sure you wish to proceed?</h4>
{% endif %}
{% if message %}<h4>{{ message }}</h4>{% endif %}
<br>
<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>
</form>
{% endblock %}