Projekt

Obecné

Profil

Stáhnout (2.76 KB) Statistiky
| Větev: | Revize:
1
<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
	<body>
19
	<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
					<tr th:each="iconfiguration : ${configurations}">
35
						<td><a th:href="@{/configuration(configurationID=${iconfiguration.id})}"><span th:text="${iconfiguration.name}"></span></a></td>
36
						<td class="center-cell">
37
				  <span class="action-button">
38
					<a href=# class="action-link far fa-trash-alt"></a>
39
				  </span>
40
						</td>
41
					</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
				<button type="button" class="btn btn-success"><i class="fas fa-plus"></i> Přidat novou sestavu</button>
53
				<button type="button" class="btn btn-success align-right"><i class="fas fa-sort"></i> Upravit řazení</button>
54
			</div>
55

    
56
			<table class="table table-bordered table-striped">
57
				<thead>
58
				<tr>
59
					<th scope="col">Sestava</th>
60
					<th scope="col">Seznam atributů</th>
61
					<th scope="col">Akce</th>
62
				</tr>
63
				</thead>
64
				<tbody>
65
					<tr th:each="iassembly, itemStat : ${assemblies}">
66
						<div>
67
							<td><a th:href="@{/assembly(assemblyID=${iassembly.id})}"><span th:text="${iassembly.name}"></span></a></td>
68
							<td th:text="${attributes[__${itemStat.index}__]}"></td>
69
							<td>
70
								<div class="action-wrapper">
71
									<span class="action-button">
72
									  <a th:href="@{/assembly_edit(assemblyID=${iassembly.id})}" class="action-link far fa-edit"></a>
73
									</span>
74
									<span class="action-button">
75
									  <a href=# class="action-link far fa-trash-alt"></a>
76
									</span>
77
								</div>
78
							</td>
79
						</div>
80
					</tr>
81
				</tbody>
82
			</table>
83
		</div>
84
	</main>
85

    
86
	<footer class="text-muted">
87
		<div class="container">
88

    
89
		</div>
90
	</footer>
91

    
92
	<script type="text/javascript" src="js/app.js"></script>
93
	</body>
94
</html>
(3-3/4)