Projekt

Obecné

Profil

Stáhnout (2.77 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

    
53
				<a th:href="@{/assembly_new}" class="btn btn-success mb-2"><i class="fas fa-plus"></i> Přidat novou sestavu</a>
54
				<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
				</tr>
64
				</thead>
65
				<tbody>
66
					<tr th:each="iassembly, itemStat : ${assemblies}">
67
						<div>
68
							<td><a th:href="@{/assembly(assemblyID=${iassembly.id})}"><span th:text="${iassembly.name}"></span></a></td>
69
							<td th:text="${attributes[__${itemStat.index}__]}"></td>
70
							<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
							</td>
80
						</div>
81
					</tr>
82
				</tbody>
83
			</table>
84
		</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
	</body>
95
</html>
(3-3/4)