luci/applications/luci-app-commands/ucode/template/commands_public.ut
Jo-Philipp Wich 1021ecef10 Revert "luci-app-commands: replace i18n single quotes with double-quotes"
This reverts commit 119fd22ebf.

The commit is ineffective and does not solve the reported issue.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2024-07-28 00:21:24 +02:00

48 lines
1.2 KiB
Text

{#
Copyright 2016 t123yh <t123yh@outlook.com>
Copyright 2022 Jo-Philipp Wich <jo@mein.io>
Licensed to the public under the Apache License 2.0.
-#}
{%
include('header', { blank_page: true, css: `
.alert-success {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
}
.alert {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
}
.alert-warning {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}
` });
-%}
<div class="alert alert-success" role="alert">
{% if (exitcode == 0): %}
{{ _('Command executed successfully.') }}
{% else %}
{{ sprintf(_('Command exited with status code %d'), exitcode) }}
{% endif %}
</div>
{% if (length(stdout)): %}
<h3>{{ _('Standard Output') }}</h3>
<pre>{{ entityencode(stdout) }}</pre>
{% endif %}
{% if (length(stderr)): %}
<h3>{{ _('Standard Error') }}</h3>
<pre>{{ entityencode(stderr) }}</pre>
{% endif %}
{% include('footer', { blank_page: true }) %}