confirm_remove.html (703B)
1 {% extends 'base.html' %} 2 3 {% block title %}Confirm{% endblock %} 4 5 {% block content %} 6 <section class="new-agreement-grid"> 7 <h3>WARNING:Are you sure you want to remove this asset?</h3> 8 <form action="" method="POST" novalidate> 9 {{ form.hidden_tag() }} 10 {% for error in form.errors %} 11 <span style="color:red;">[{{ error }}]</span> 12 {% endfor %} 13 {% for ferror in form.form_errors %} 14 <span style="color:yellow;">[{{ ferror }}]</span> 15 {% endfor %} 16 {% with messages = get_flashed_messages() %} 17 {% if messages %} 18 {% for message in messages %} 19 <p style='color:red'>{{ message }}</p> 20 {% endfor %} 21 {% endif %} 22 {% endwith %} 23 {{ form.confirm() }} 24 </form> 25 </section> 26 {% endblock %}