diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-08-23 12:17:41 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-08-30 13:34:55 +0200 |
commit | 31766a3d07549e846c61ead624b4a45f88948fc0 (patch) | |
tree | f2f06975e74aeef719a875de805cffeb59ffaba2 /ogcp/templates/actions/repos_update.html | |
parent | bcd18241c7bf0363d00b2203c294d443b22d7807 (diff) |
ogcp: add support for multi-ip repositories
Add support for the new API REST for repository management where
the address is a list of ips instead of a single string.
Add dynamic address creation in /action/repo/update and
/action/repo/add forms through delete and add buttons in the form.
Update /image/restore and /cache/fetch to use repository_id.
Add additional repository form validations.
Diffstat (limited to 'ogcp/templates/actions/repos_update.html')
-rw-r--r-- | ogcp/templates/actions/repos_update.html | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/ogcp/templates/actions/repos_update.html b/ogcp/templates/actions/repos_update.html index 15c6b64..1278648 100644 --- a/ogcp/templates/actions/repos_update.html +++ b/ogcp/templates/actions/repos_update.html @@ -9,9 +9,6 @@ <h2 class="mx-5 subhead-heading">{{_('Update repo')}}</h2> -{{ wtf.quick_form(form, - action=url_for('action_repo_update'), - method='post', - button_map={'submit': 'primary'}, - extra_classes="mx-5") }} +{% include 'repo_inspector.html' %} + {% endblock %} |