1 |
cfe48a96
|
cagy
|
<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml"><head>
|
2 |
|
|
<meta charset="utf-8">
|
3 |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
4 |
|
|
<meta name="description" content="">
|
5 |
|
|
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
|
6 |
|
|
<meta name="generator" content="Jekyll v3.8.6">
|
7 |
|
|
<title>Album example · Bootstrap</title>
|
8 |
|
|
|
9 |
|
|
<link rel="canonical" href="https://getbootstrap.com/docs/4.4/examples/album/">
|
10 |
|
|
|
11 |
|
|
<!-- Bootstrap core CSS -->
|
12 |
|
|
<link href="css/bootstrap.min.css" rel="stylesheet">
|
13 |
|
|
<link href="css/fontawesome.min.css" rel="stylesheet">
|
14 |
|
|
<link href="css/style.css" rel="stylesheet">
|
15 |
|
|
|
16 |
f7dc4075
|
cagy
|
<link href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css" rel="stylesheet">
|
17 |
cfe48a96
|
cagy
|
|
18 |
f7dc4075
|
cagy
|
<script type="text/javascript" src="js/jquery.js"></script>
|
19 |
|
|
<script src="//code.jquery.com/jquery-1.11.1.js"></script>
|
20 |
|
|
<script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script>
|
21 |
cfe48a96
|
cagy
|
</head>
|
22 |
26342eaf
|
Vojtěch Danišík
|
<body>
|
23 |
f7dc4075
|
cagy
|
<meta id="_csrf" name="_csrf" th:content="${_csrf.token}"/>
|
24 |
|
|
<meta id="_csrf_header" name="_csrf_header" th:content="${_csrf.headerName}"/>
|
25 |
|
|
|
26 |
cfe48a96
|
cagy
|
<div id="test"></div>
|
27 |
|
|
<main role="main">
|
28 |
|
|
|
29 |
|
|
<div class="container">
|
30 |
|
|
<h1>
|
31 |
|
|
Výběr sestavy
|
32 |
|
|
</h1>
|
33 |
|
|
</div>
|
34 |
|
|
<div class="container">
|
35 |
|
|
<div class="col-md-4 box">
|
36 |
|
|
<div class="box-header">
|
37 |
|
|
<h3 class="box-title">Rychle k ...</h3>
|
38 |
|
|
</div>
|
39 |
|
|
<table class="table table-bordered table-striped">
|
40 |
|
|
<tbody>
|
41 |
b439853d
|
mlinha
|
<tr th:each="iconfiguration : ${configurations}">
|
42 |
|
|
<td><a th:href="@{/configuration(configurationID=${iconfiguration.id})}"><span th:text="${iconfiguration.name}"></span></a></td>
|
43 |
cfe48a96
|
cagy
|
<td class="center-cell">
|
44 |
|
|
<span class="action-button">
|
45 |
74a73b3b
|
Vojtěch Danišík
|
<a th:href="@{/configuration_delete(configurationID=${iconfiguration.id})}" class="action-link far fa-trash-alt"></a>
|
46 |
cfe48a96
|
cagy
|
</span>
|
47 |
2868bb9a
|
Vojtěch Danišík
|
</td>
|
48 |
cfe48a96
|
cagy
|
</tr>
|
49 |
|
|
</tbody>
|
50 |
|
|
</table>
|
51 |
|
|
</div>
|
52 |
|
|
</div>
|
53 |
|
|
|
54 |
|
|
<div class="container box">
|
55 |
|
|
<div class="box-header">
|
56 |
|
|
<h3 class="box-title">Seznam sestav</h3>
|
57 |
|
|
</div>
|
58 |
|
|
<div class="button-container">
|
59 |
a2e84e8c
|
Vojtěch Danišík
|
|
60 |
|
|
<a th:href="@{/assembly_new}" class="btn btn-success mb-2"><i class="fas fa-plus"></i> Přidat novou sestavu</a>
|
61 |
9037608d
|
cagy
|
<span class="btn btn-success align-right" id="saveSort">Uložit řazení</span>
|
62 |
cfe48a96
|
cagy
|
</div>
|
63 |
|
|
|
64 |
|
|
<table class="table table-bordered table-striped">
|
65 |
|
|
<thead>
|
66 |
|
|
<tr>
|
67 |
|
|
<th scope="col">Sestava</th>
|
68 |
|
|
<th scope="col">Seznam atributů</th>
|
69 |
|
|
<th scope="col">Akce</th>
|
70 |
2868bb9a
|
Vojtěch Danišík
|
</tr>
|
71 |
cfe48a96
|
cagy
|
</thead>
|
72 |
f7dc4075
|
cagy
|
<tbody class="sort">
|
73 |
9037608d
|
cagy
|
<tr th:each="iassembly, itemStat : ${assemblies}" th:id ="${iassembly.id}">
|
74 |
cfe48a96
|
cagy
|
<div>
|
75 |
|
|
<td><a th:href="@{/assembly(assemblyID=${iassembly.id})}"><span th:text="${iassembly.name}"></span></a></td>
|
76 |
b66f682e
|
mlinha
|
<td th:text="${attributes[__${itemStat.index}__]}"></td>
|
77 |
bfd68253
|
cagy
|
<td>
|
78 |
|
|
<div class="action-wrapper">
|
79 |
|
|
<span class="action-button">
|
80 |
|
|
<a th:href="@{/assembly_edit(assemblyID=${iassembly.id})}" class="action-link far fa-edit"></a>
|
81 |
|
|
</span>
|
82 |
|
|
<span class="action-button">
|
83 |
74a73b3b
|
Vojtěch Danišík
|
<a th:href="@{/assembly_delete(assemblyID=${iassembly.id})}" class="action-link far fa-trash-alt"></a>
|
84 |
bfd68253
|
cagy
|
</span>
|
85 |
f7dc4075
|
cagy
|
|
86 |
|
|
<i class="fas fa-sort"></i>
|
87 |
|
|
</div>
|
88 |
|
|
</td>
|
89 |
|
|
</div>
|
90 |
|
|
</tr>
|
91 |
|
|
</tbody>
|
92 |
2868bb9a
|
Vojtěch Danišík
|
</table>
|
93 |
cfe48a96
|
cagy
|
</div>
|
94 |
|
|
</main>
|
95 |
|
|
|
96 |
|
|
<footer class="text-muted">
|
97 |
|
|
<div class="container">
|
98 |
|
|
|
99 |
|
|
</div>
|
100 |
|
|
</footer>
|
101 |
|
|
|
102 |
|
|
<script type="text/javascript" src="js/app.js"></script>
|
103 |
26342eaf
|
Vojtěch Danišík
|
</body>
|
104 |
|
|
</html>
|
105 |
f7dc4075
|
cagy
|
|
106 |
9037608d
|
cagy
|
<script type="text/javascript" src="js/indexScripts.js" th:inline="javascript"></script>
|