diff options
Diffstat (limited to 'ogcp/templates/actions/image_config.html')
-rw-r--r-- | ogcp/templates/actions/image_config.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ogcp/templates/actions/image_config.html b/ogcp/templates/actions/image_config.html new file mode 100644 index 0000000..c286683 --- /dev/null +++ b/ogcp/templates/actions/image_config.html @@ -0,0 +1,24 @@ +{% extends 'images.html' %} +{% import "bootstrap/wtf.html" as wtf %} + +{% set btn_back = true %} + +{% block content %} + +<h2 class="mx-5 subhead-heading">{{_('Update image')}}</h2> + +<form class="form mx-5" method="POST" action="{{ url_for('action_image_config') }}"> + {{ form.hidden_tag() }} + + {{ form.image_id() }} + {{ form.server() }} + {{ form.name() }} + + {% include 'scopes_checkbox_group.html' %} + + <div class="form-group"> + {{ form.submit(class="btn btn-primary") }} + </div> + </form> + +{% endblock %} |