summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/image_config.html
blob: 26fc737e2ac2b0d6411be2f6412bad6fc5a5bca6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends 'images.html' %}
{% import "bootstrap/wtf.html" as wtf %}

{% set sidebar_state = 'disabled' %}
{% set btn_back = true %}

{% block content %}

<h2 class="mx-5 subhead-heading">{{_('Update image')}} {{ form.name.data }}</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 %}