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 |
|
|
|
17 |
|
|
</head>
|
18 |
26342eaf
|
Vojtěch Danišík
|
<body>
|
19 |
cfe48a96
|
cagy
|
<div id="test"></div>
|
20 |
|
|
<main role="main">
|
21 |
|
|
|
22 |
|
|
<div class="container">
|
23 |
|
|
<h1>
|
24 |
|
|
Výběr sestavy
|
25 |
|
|
</h1>
|
26 |
|
|
</div>
|
27 |
|
|
<div class="container">
|
28 |
|
|
<div class="col-md-4 box">
|
29 |
|
|
<div class="box-header">
|
30 |
|
|
<h3 class="box-title">Rychle k ...</h3>
|
31 |
|
|
</div>
|
32 |
|
|
<table class="table table-bordered table-striped">
|
33 |
|
|
<tbody>
|
34 |
b439853d
|
mlinha
|
<tr th:each="iconfiguration : ${configurations}">
|
35 |
|
|
<td><a th:href="@{/configuration(configurationID=${iconfiguration.id})}"><span th:text="${iconfiguration.name}"></span></a></td>
|
36 |
cfe48a96
|
cagy
|
<td class="center-cell">
|
37 |
|
|
<span class="action-button">
|
38 |
|
|
<a href=# class="action-link far fa-trash-alt"></a>
|
39 |
|
|
</span>
|
40 |
2868bb9a
|
Vojtěch Danišík
|
</td>
|
41 |
cfe48a96
|
cagy
|
</tr>
|
42 |
|
|
</tbody>
|
43 |
|
|
</table>
|
44 |
|
|
</div>
|
45 |
|
|
</div>
|
46 |
|
|
|
47 |
|
|
<div class="container box">
|
48 |
|
|
<div class="box-header">
|
49 |
|
|
<h3 class="box-title">Seznam sestav</h3>
|
50 |
|
|
</div>
|
51 |
|
|
<div class="button-container">
|
52 |
a2e84e8c
|
Vojtěch Danišík
|
|
53 |
|
|
<a th:href="@{/assembly_new}" class="btn btn-success mb-2"><i class="fas fa-plus"></i> Přidat novou sestavu</a>
|
54 |
cfe48a96
|
cagy
|
<button type="button" class="btn btn-success align-right"><i class="fas fa-sort"></i> Upravit řazení</button>
|
55 |
|
|
</div>
|
56 |
|
|
|
57 |
|
|
<table class="table table-bordered table-striped">
|
58 |
|
|
<thead>
|
59 |
|
|
<tr>
|
60 |
|
|
<th scope="col">Sestava</th>
|
61 |
|
|
<th scope="col">Seznam atributů</th>
|
62 |
|
|
<th scope="col">Akce</th>
|
63 |
2868bb9a
|
Vojtěch Danišík
|
</tr>
|
64 |
cfe48a96
|
cagy
|
</thead>
|
65 |
|
|
<tbody>
|
66 |
b66f682e
|
mlinha
|
<tr th:each="iassembly, itemStat : ${assemblies}">
|
67 |
cfe48a96
|
cagy
|
<div>
|
68 |
|
|
<td><a th:href="@{/assembly(assemblyID=${iassembly.id})}"><span th:text="${iassembly.name}"></span></a></td>
|
69 |
b66f682e
|
mlinha
|
<td th:text="${attributes[__${itemStat.index}__]}"></td>
|
70 |
bfd68253
|
cagy
|
<td>
|
71 |
|
|
<div class="action-wrapper">
|
72 |
|
|
<span class="action-button">
|
73 |
|
|
<a th:href="@{/assembly_edit(assemblyID=${iassembly.id})}" class="action-link far fa-edit"></a>
|
74 |
|
|
</span>
|
75 |
|
|
<span class="action-button">
|
76 |
|
|
<a href=# class="action-link far fa-trash-alt"></a>
|
77 |
|
|
</span>
|
78 |
|
|
</div>
|
79 |
cfe48a96
|
cagy
|
</td>
|
80 |
|
|
</div>
|
81 |
|
|
</tr>
|
82 |
|
|
</tbody>
|
83 |
2868bb9a
|
Vojtěch Danišík
|
</table>
|
84 |
cfe48a96
|
cagy
|
</div>
|
85 |
|
|
</main>
|
86 |
|
|
|
87 |
|
|
<footer class="text-muted">
|
88 |
|
|
<div class="container">
|
89 |
|
|
|
90 |
|
|
</div>
|
91 |
|
|
</footer>
|
92 |
|
|
|
93 |
|
|
<script type="text/javascript" src="js/app.js"></script>
|
94 |
26342eaf
|
Vojtěch Danišík
|
</body>
|
95 |
|
|
</html>
|