diff options
Diffstat (limited to 'ogcp/templates')
-rw-r--r-- | ogcp/templates/actions/legacy/log.html | 10 | ||||
-rw-r--r-- | ogcp/templates/commands.html | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/ogcp/templates/actions/legacy/log.html b/ogcp/templates/actions/legacy/log.html new file mode 100644 index 0000000..08d3328 --- /dev/null +++ b/ogcp/templates/actions/legacy/log.html @@ -0,0 +1,10 @@ +{% extends 'base.html' %} +{% import "bootstrap/wtf.html" as wtf %} + +{% block content %} + +<h1 class="m-5">{{_('Client log')}}</h1> + +<pre>{{ log }}</pre> + +{% endblock %} diff --git a/ogcp/templates/commands.html b/ogcp/templates/commands.html index 1e7dc84..b965867 100644 --- a/ogcp/templates/commands.html +++ b/ogcp/templates/commands.html @@ -40,5 +40,7 @@ form="scopesForm" formaction="{{ url_for('action_image_create') }}" formmethod="get"> <input class="btn btn-light" type="submit" value="{{ _('Set boot mode') }}" form="scopesForm" formaction="{{ url_for('action_mode') }}" formmethod="get"> + <input class="btn btn-light" type="submit" value="{{ _('Log') }}" + form="scopesForm" formaction="{{ url_for('action_legacy_log') }}" formmethod="get"> {% endblock %} |