의 미러
https://git.openwrt.org/project/luci.git
synced 2025-01-18 23:45:02 +00:00
1021ecef10
This reverts commit 119fd22ebf
.
The commit is ineffective and does not solve the reported issue.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
48 lines
1.2 KiB
Text
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 }) %}
|