Projekt

Obecné

Profil

Stáhnout (2.91 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>
35
						<td><a href=#>Vlastní šablona 1</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
					<tr>
43
						<td><a href=#>Vlastní šablona 2, Vlastní šablona 2, Vlastní šablona 2, Vlastní šablona 2</a></td>
44
						<td class="center-cell">
45
				  <span class="action-button">
46
					<a href=# class="action-link far fa-trash-alt"></a>
47
				  </span>
48
						</td>
49
					</tr>
50
					</tbody>
51
				</table>
52
			</div>
53
		</div>
54

    
55
		<div class="container box">
56
			<div class="box-header">
57
				<h3 class="box-title">Seznam sestav</h3>
58
			</div>
59
			<div class="button-container">
60

    
61
				<a th:href="@{/assembly_new}" class="btn btn-success mb-2"><i class="fas fa-plus"></i> Přidat novou sestavu</a>
62
				<button type="button" class="btn btn-success align-right"><i class="fas fa-sort"></i> Upravit řazení</button>
63
			</div>
64

    
65
			<table class="table table-bordered table-striped">
66
				<thead>
67
				<tr>
68
					<th scope="col">Sestava</th>
69
					<th scope="col">Seznam atributů</th>
70
					<th scope="col">Akce</th>
71
				</tr>
72
				</thead>
73
				<tbody>
74
					<tr th:each="iassembly : ${assemblies}">
75
						<div>
76
							<td><a th:href="@{/assembly(assemblyID=${iassembly.id})}"><span th:text="${iassembly.name}"></span></a></td>
77
							<td>Akademický rok, Fakulta, Typ strudia, Ročník, ...</td>
78
							<td>
79
								<div class="action-wrapper">
80
									<span class="action-button">
81
									  <a th:href="@{/assembly_edit(assemblyID=${iassembly.id})}" class="action-link far fa-edit"></a>
82
									</span>
83
									<span class="action-button">
84
									  <a href=# class="action-link far fa-trash-alt"></a>
85
									</span>
86
								</div>
87
							</td>
88
						</div>
89
					</tr>
90
				</tbody>
91
			</table>
92
		</div>
93
	</main>
94

    
95
	<footer class="text-muted">
96
		<div class="container">
97

    
98
		</div>
99
	</footer>
100

    
101
	<script type="text/javascript" src="js/app.js"></script>
102
	</body>
103
</html>
(3-3/4)