1 | <!DOCTYPE html>
|
---|
2 | <html style="font-size: 16px;" lang="en"><head>
|
---|
3 | <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
---|
4 | <meta charset="utf-8">
|
---|
5 | <meta name="keywords" content="">
|
---|
6 | <meta name="description" content="">
|
---|
7 | <title>Tournaments Report</title>
|
---|
8 | <link rel="stylesheet" href="temp.css" media="screen">
|
---|
9 | <link rel="stylesheet" href="Result.css" media="screen">
|
---|
10 | <link rel="stylesheet" href="styles.css" media="screen">
|
---|
11 | <script class="u-script" type="text/javascript" src="jquery.js" defer=""></script>
|
---|
12 | <script class="u-script" type="text/javascript" src="temp.js" defer=""></script>
|
---|
13 | <meta name="generator" content="Nicepage 5.4.4, nicepage.com">
|
---|
14 | <link id="u-theme-google-font" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i|Open+Sans:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i">
|
---|
15 |
|
---|
16 |
|
---|
17 | <script type="application/ld+json">{
|
---|
18 | "@context": "http://schema.org",
|
---|
19 | "@type": "Organization",
|
---|
20 | "name": "",
|
---|
21 | "logo": "images/logo.png"
|
---|
22 | }</script>
|
---|
23 | <meta name="theme-color" content="#478ac9">
|
---|
24 | <meta property="og:title" content="Result">
|
---|
25 | <meta property="og:type" content="website">
|
---|
26 | <meta data-intl-tel-input-cdn-path="intlTelInput/"></head>
|
---|
27 | <body class="u-body u-xl-mode" data-lang="en"><header class="u-clearfix u-header u-header" id="sec-2d07">
|
---|
28 |
|
---|
29 |
|
---|
30 |
|
---|
31 | <div th:insert="~{_layout :: header}"></div>
|
---|
32 |
|
---|
33 |
|
---|
34 |
|
---|
35 | </header>
|
---|
36 | <section class="u-align-center-sm u-align-center-xs u-align-right-lg u-align-right-md u-align-right-xl u-clearfix u-palette-1-base u-section-1" id="sec-88e1">
|
---|
37 | <div class="u-clearfix u-sheet u-valign-middle-md u-valign-middle-sm u-valign-middle-xs u-sheet-1">
|
---|
38 | <div class="u-container-layout u-valign-middle u-container-layout-1">
|
---|
39 | <div class="u-align-center u-text u-text-default u-text-1">
|
---|
40 |
|
---|
41 | <h1 style="margin-top: 100px; margin-bottom: 50px" class="u-container-layout u-valign-middle u-container-layout-1">
|
---|
42 | Tournament Report</h1>
|
---|
43 |
|
---|
44 | <table class="table table-bordered mt-3 reportTabeli">
|
---|
45 | <thead class="thead-dark">
|
---|
46 | <tr>
|
---|
47 | <th scope="col">User ID</th>
|
---|
48 | <th scope="col">Username</th>
|
---|
49 | <th scope="col">Tournament Name</th>
|
---|
50 | <th scope="col">Quiz Name</th>
|
---|
51 | <th scope="col">Points</th>
|
---|
52 | <th scope="col">Attempt Date</th>
|
---|
53 | <th scope="col">Medal Name</th>
|
---|
54 | </tr>
|
---|
55 | </thead>
|
---|
56 | <tbody>
|
---|
57 | <tr th:each="item : ${items}">
|
---|
58 | <td th:text="${item.getUserid()}"></td>
|
---|
59 | <td th:text="${item.getUsername()}"></td>
|
---|
60 | <td th:text="${item.getTournamentname()}"></td>
|
---|
61 | <td th:text="${item.getQuizname()}"></td>
|
---|
62 | <td th:text="${item.getPoints()}"></td>
|
---|
63 | <td th:text="${item.getAttemptdate()}"></td>
|
---|
64 | <td th:text="${item.getMedalname()}"></td>
|
---|
65 |
|
---|
66 | </tr>
|
---|
67 | </tbody>
|
---|
68 | </table>
|
---|
69 |
|
---|
70 | </div>
|
---|
71 | </div>
|
---|
72 | </div>
|
---|
73 | </section>
|
---|
74 |
|
---|
75 |
|
---|
76 | <footer class="u-align-center u-clearfix u-footer u-grey-80 u-footer" id="sec-9625">
|
---|
77 |
|
---|
78 | <div th:insert="~{_layout :: footer}"></div>
|
---|
79 |
|
---|
80 | </footer>
|
---|
81 | </body></html> |
---|