1
13693261870
2022-09-16 58d012f11dd34564d81b4eb3a6099eb689876597
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="monitoring/layout">
 
<head>
    <title th:text="#{cas.viewconfig.pagetitle}"></title>
</head>
 
<body id="cas">
<div id="container">
    <div layout:fragment="content">
        <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/cupertino/jquery-ui.css"/>
        <link rel="stylesheet" href="//cdn.datatables.net/plug-ins/1.10.6/integration/jqueryui/dataTables.jqueryui.css" />
 
        <script type="text/javascript" th:inline="javascript">
            var urls = {
                getConfiguration: /*[[@{/status/env}]]*/
            };
            function jqueryReady() {
                head.load(
                        /*[[@{/js/viewConfig.js}]]*/
                );
            }
        </script>
 
        <div class="viewConfig">
            <div id="loadingMessage"><h3 th:text="#{cas.viewconfig.loading}" /></div>
 
 
            <div id="viewConfigError">
                <h2 th:text="#{cas.viewconfig.errormessage}"></h2>
                <div>
                    <input class="btn btn-success" type="button" onclick="location.reload();"
                           th:value="#{cas.viewconfig.button.refresh}"/>
                </div>
            </div>
 
            <div id="view-configuration">
                <div id="alertWrapper"/>
 
                <div class="panel panel-default">
                    <div class="panel-heading">
                        <h4 th:text="#{cas.viewconfig.pagetitle}">
                            <span class="glyphicon glyphicon-cog" aria-hidden="true"/>
                        </h4>
                    </div>
                    <div class="panel-body">
                        <div id="containers-table" class="container-fluid">
                            
                            <table id="viewConfigsTable" class="display table table-striped table-bordered">
                                <thead>
                                <tr>
                                    <th th:text="#{cas.viewconfig.table.column.key}" />
                                    <th th:text="#{cas.viewconfig.table.column.value}" />
                                </tr>
                                </thead>
                                <tbody>
                                <tr>
                                    <td></td>
                                    <td></td>
                                </tr>
                                </tbody>
                            </table>
                        </div>
 
                    </div>
 
                </div>
            </div>
        </div>
        <div th:replace="fragments/footerButtons"/>
    </div>
    
</div>
</body>
</html>