commit 6998067ab9788c802bf1f788df94e75f0e79404b parent 5a791de8cd934f3c0f1cf702c551fce58cd074a8 Author: Youth Employment Program Production <youthemployment22@gmail.com> Date: Tue, 23 Apr 2024 12:40:26 -0600 forgot to add change branch Diffstat:
A | app/templates/admin/update/branch.html | | | 27 | +++++++++++++++++++++++++++ |
1 file changed, 27 insertions(+), 0 deletions(-)
diff --git a/app/templates/admin/update/branch.html b/app/templates/admin/update/branch.html @@ -0,0 +1,27 @@ +{% extends 'base.html' %} + +{% block title %}Update Branch{% endblock %} + +{% block content %} +<section class="new-agreement-grid"> + <h3>Update Branch</h3> + <form action="" method="POST" novalidate> + {{ form.hidden_tag() }} + {% for error in form.errors %} + <span style="color:red;">[{{ error }}]</span> + {% endfor %} + {% for ferror in form.form_errors %} + <span style="color:yellow;">[{{ ferror }}]</span> + {% endfor %} + {% with messages = get_flashed_messages() %} + {% if messages %} + {% for message in messages %} + <p style='color:red'>{{ message }}</p> + {% endfor %} + {% endif %} + {% endwith %} + {{ form.branch.label }}{{ form.branch() }}<br> + {{ form.changeBranch() }} + </form> +</section> +{% endblock %}