diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-08-30 13:49:49 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-09-02 15:05:31 +0200 |
commit | 78a26f947fba1af6b339567cb58e0f852d253137 (patch) | |
tree | 0e4709b2ce2f02d424fb449744b337bcc6d8df9b /ogcp/templates | |
parent | 31766a3d07549e846c61ead624b4a45f88948fc0 (diff) |
templates: use Fetch image as text for the Cache image button
Use "Fetch image" as text for the button to access the view
where the user selects images to add to cache.
Diffstat (limited to 'ogcp/templates')
-rw-r--r-- | ogcp/templates/actions/cache_fetch.html | 2 | ||||
-rw-r--r-- | ogcp/templates/commands.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ogcp/templates/actions/cache_fetch.html b/ogcp/templates/actions/cache_fetch.html index c04d20b..6dbc031 100644 --- a/ogcp/templates/actions/cache_fetch.html +++ b/ogcp/templates/actions/cache_fetch.html @@ -12,7 +12,7 @@ {% set ip_list = form.ips.data.split(' ') %} {% set ip_count = ip_list | length %} <h2 class="mx-5 subhead-heading"> - {{ _('Cache image in %(ip_count)d computer(s)', ip_count=ip_count) }} + {{ _('Fetch image in %(ip_count)d computer(s)', ip_count=ip_count) }} </h2> {{ macros.cmd_selected_clients(selected_clients) }} diff --git a/ogcp/templates/commands.html b/ogcp/templates/commands.html index 70c30ab..48630ea 100644 --- a/ogcp/templates/commands.html +++ b/ogcp/templates/commands.html @@ -76,7 +76,7 @@ {% endif %} <input class="btn btn-light dropdown-item{% block nav_image_restore %}{% endblock %}" type="submit" value="{{ _('Restore image') }}" form="scopesForm" formaction="{{ url_for('action_image_restore') }}" formmethod="get"> - <input class="btn btn-light dropdown-item{% block nav_image_fetch %}{% endblock %}" type="submit" value="{{ _('Cache image') }}" + <input class="btn btn-light dropdown-item{% block nav_image_fetch %}{% endblock %}" type="submit" value="{{ _('Fetch image') }}" form="scopesForm" formaction="{{ url_for('action_image_fetch') }}" formmethod="get"> </div> </div> |