-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (97 loc) · 4 KB
/
Copy pathindex.html
File metadata and controls
106 lines (97 loc) · 4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="favicon.svg">
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="scripts/init.js"></script>
<script src="scripts/group.js"></script>
<script src="scripts/project.js"></script>
<script src="scripts/commit.js"></script>
<script src="scripts/data.js"></script>
<script src="scripts/script.js" defer></script>
<title>commits-dashboard</title>
</head>
<body>
<h1>Dashboard</h1>
<form >
<div class="form-group">
<label for="token-input">Token</label>
<input type="text" class="form-control" id="token-input" placeholder="Enter token" required>
<small id="tokenHelp" class="form-text text-muted">Créez votre token <a href="https://git.esi-bru.be/-/profile/personal_access_tokens">ici</a>.</small>
</div>
<div class="form-group">
<label for="token-input">UE</label>
<select class="form-control" id="ue-select">
</select>
</div>
<div class="form-group">
<label for="group-select">Groupe</label>
<select class="form-control" id="group-select">
</select>
</div>
<div class="form-group">
<label for="path-input">Chemin</label>
<input class="form-control" id="path-input" placeholder="2023-2024/web2"></input>
</div>
<div class="form-group">
<label for="repo-name">Template du nom de projet</label>
<input class="form-control" id="repo-name" placeholder="exam-gxxxxx-juin"></input>
</div>
<button id="load-btn" type="button" class="btn btn-outline-dark">Charger</button>
</form>
<!-- <nav style="--bs-breadcrumb-divider: '>';">
<ol class="breadcrumb">
<li class="breadcrumb-item">Groupes</li>
<li class="breadcrumb-item active">étudiant</li>
</ol>
</nav> -->
<table id="resume-table" class="table table-sm table-striped table-hover">
<thead>
<tr>
<th scope=row>index</th>
<th scope="row">matricule</th>
<th scope="row">nb commits</th>
<th scope="row">date dernier commit</th>
<th scope="row">titre dernier commit</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<table id="details-table" class="invisible table table-sm table-striped table-hover">
<thead>
<tr >
<th scope="row" class="text-center fs-2" colspan="3">Liste des commits de <span id="student-mat"></span></td>
</tr>
<tr>
<th scope=row>index</th>
<th scope="row">date</th>
<th scope="row">titre du commit</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<template id="template-details-row">
<tr>
<th scope="row" class="index"></th>
<td class="date"></td>
<td><a class="title" href="https://git.esi-bru.be"></a></td>
<td class="author"></td>
</tr>
</template>
<template id="template-row">
<tr>
<th scope="row" class="index"></th>
<td><a href="#" class="student link-secondary"</a></td>
<td class="nbCommits"></td>
<td class="date"></td>
<td><a class="title" href="https://git.esi-bru.be"></a></td>
</tr>
</template>
</body>
</html>