summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-commands/ucode/template/commands_public.ut
blob: aef072f8026a3e89e78a8e1e499dad7a995404d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{#
 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 }) %}