ConfiguracaoEmail.html
2.15 KB
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
xmlns:th="http://www.thymeleaf.org"
xmlns:data="http://www.thymeleaf.org/extras/data"
layout:decorate="~{layout/LayoutPadrao}">
<head>
<title>Configurações do Ambiente</title>
</head>
<section layout:fragment="conteudo">
<div class="page-header">
<div class="container-fluid">
<h1>Configurações do Ambiente</h1>
</div>
</div>
<div class="container-fluid">
<form method="post" class="form-vertical js-form-loading class_remove_pdf" >
<div class="row">
</div>
<div class="row">
<div class="col-sm-12">
<table class="table table-hover" id="tabela-lista-protocolo">
<thead>
<tr>
<th>Nome da configuracao</th>
<th>Metadados</th>
<th>Ação</th>
</tr>
</thead>
<tbody>
<tr th:each="configuracaoEmail : ${configuracoes}">
<td th:text="${configuracaoEmail.nome}">x</td>
<td><div th:each="metadado : ${configuracaoEmail.metadados}"><span th:text="${metadado.nome}"></span></div></td>
<td>
<a class="btn btn-link btn-xs js-btn-editar-tipos-documento" title="Editar" th:href="@{/configuracao/configuracaoEmail/{codigo}(codigo=${configuracaoEmail.codigo})}">
<i class="glyphicon glyphicon-pencil"></i>
</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</form>
</div>
</section>
<th:block layout:fragment="javascript-extra">
<script th:src="@{/javascripts/vendors/handlebars.min.js}"></script>
<script th:src="@{/javascripts/dashboard.lista-arquivos.js}"></script>
<script th:src="@{/javascripts/jquery.base64.js}"></script>
</th:block>
</html>