-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheventList.html
94 lines (84 loc) · 4.93 KB
/
eventList.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>ULPGC EVENTS</title>
<link rel="icon" href="../images/logoUlpgc.png">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../css/header.css">
<link rel="stylesheet" href="../css/footer.css">
<link rel="stylesheet" href="../../css/eventList.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-zYPOMqeu1DAVkHiLqWBUTcbYfZ8osu1Nd6Z89ify25QV9guujx43ITvfi12/QExE" crossorigin="anonymous"></script>
<script src = "../js/header.js" type="module"></script>
<script src="../js/loadListEvents.js" type="module"></script>
<script src = "../js/changeLanguage.js"></script>
<script src = "../js/exportXls.js" type="module"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="//cdn.rawgit.com/rainabba/jquery-table2excel/1.1.0/dist/jquery.table2excel.min.js"></script>
<body id="cuerpo-pagina">
<header id="header"></header>
<h1 id="header-lista-eventos-usuario"></h1>
<button class="btn btn-success" id="excel-button">
</button>
<div id="page_element">
<table class="table table-striped table-hover table-responsive" id="table-event-list">
<thead class="bg-primary text-white">
<tr>
<th scope="col" class="hidden no-export">id</th>
<th id="nombre-tabla-evento" scope="col"></th>
<th id="fecha-tabla-evento" scope="col" class="d-none d-sm-table-cell" ></th>
<th id="tipo-evento-tabla-evento" scope="col" class="d-none d-sm-table-cell"></th>
<th id="estado-tabla-evento" scope="col"></th>
<th scope="col" class="no-export"></th>
</tr>
</thead>
<tbody id="cuerpo-tabla">
</tbody>
</table>
</div>
<footer><div id="footer"></div></footer>
</body>
</html>
<div class="modal fade" id="deleteEventModal" tabindex="-1" role="dialog" aria-labelledby="deleteEventModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content" id="modal-delete_list-evento">
<div class="modal-header">
<h5 class="modal-title" id="deleteEventModalLabel">Eliminar evento</h5>
<button type="button" class="btn-close" id="exit-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
¿Está seguro que desea eliminar este evento?
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Cancelar</button>
<button type="button" class="btn btn-danger" id="deleteEventButton">Eliminar</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="deleteEventModal" tabindex="-1" role="dialog" aria-labelledby="deleteEventModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="deleteEventModalLabel">Eliminar evento</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
¿Está seguro que desea eliminar este evento?
</div>
<div class="modal-footer">
cancelDeleteButton
<button type="button" class="btn btn-secondary" id="cancelDeleteButton">Cancelar</button>
<button type="button" class="btn btn-danger" id="deleteEventButton">Eliminar</button>
</div>
</div>
</div>
</div>