##// END OF EJS Templates
comment missing views...
comment missing views git-svn-id: http://jro-dev.igp.gob.pe/svn/jro_hard/radarsys/trunk/webapp@196 aa17d016-51d5-4e8b-934c-7b2bbb1bbe71

File last commit:

r89:d23e0226ad31
r173:63992b89a422
Show More
confirm.html
26 lines | 855 B | 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 delete %}
<h3>Are you sure you wish to delete: {{ object }}?</h3>
{% else %}
<h4>Are you sure you wish to proceed?</h4>
{% endif %}
{% if message %}<p>{{ message }}</p>{% endif %}
<br>
<div class="pull-right">
<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>
</div>
</form>
{% endblock %}