-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsummary.html
118 lines (101 loc) · 3.11 KB
/
summary.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Lepedő - Összesítés</title>
<link rel="stylesheet" href="/stylesheets/sajat.css">
</head>
<body>
<div class="card bg-red">
<h5>A spórolós</h5>
<h2>Gergő</h2>
</div>
<div class="card bg-green">
<h5>Összesen elszámolt</h5>
<h2>25 682 Ft</h2>
<a href="/add_transfer">Új utalás</a>
</div>
<div class="card bg-blue">
<h5>Összesen költött</h5>
<h2>41 848 Ft</h2>
<a href="/add_expense">Új költés</a>
</div>
<h1>Lepedő</h1>
<a href="/summary"><h2>Összegzés</h2></a>
<a href="/list"><h2>Tételek</h2></a>
<table class="summary_table">
<tbody>
<tr>
<th><p class="left">#</p></th>
<th><p class="right">Költésben részesült</p></th>
<th><p class="right">Fizetett</p></th>
<th><p class="right">Utalt</p></th>
<th><p class="right">Utaltak neki</p></th>
<th><p class="right">Összesített mérleg</p></th>
</tr>
<!--ISMETLES IDE-->
<tr>
<td class="left">
<div class="usertag bg-blue">Marci</div>
<a href="/edit_user/">
<img src="/images/pencil.svg" alt="edit" />
</a>
<a href="/delete_user/">
<img src="/images/trash.svg" alt="delete" />
</a>
</td>
<td><p class="right">7000 Ft</p></td>
<td><p class="right">7000 Ft</p></td>
<td><p class="right">7000 Ft</p></td>
<td><p class="right">7000 Ft</p></td>
<td><p class="right bold">7000 Ft</p></td>
</tr>
<tr>
<td class="left">
<div class="usertag bg-red">Gergő</div>
<a href="/edit_user/">
<img src="/images/pencil.svg" alt="edit" />
</a>
<a href="/delete_user/">
<img src="/images/trash.svg" alt="delete" />
</a>
</td>
<td><p class="right">7000 Ft</p></td>
<td><p class="right">7000 Ft</p></td>
<td><p class="right">7000 Ft</p></td>
<td><p class="right">7000 Ft</p></td>
<td><p class="right bold">7000 Ft</p></td>
</tr>
<tr>
<td class="left">
<div class="usertag bg-teal">Kristóf</div>
<a href="/edit_user/">
<img src="/images/pencil.svg" alt="edit" />
</a>
<a href="/delete_user/">
<img src="/images/trash.svg" alt="delete" />
</a>
</td>
<td><p class="right">7000 Ft</p></td>
<td><p class="right">7000 Ft</p></td>
<td><p class="right">7000 Ft</p></td>
<td><p class="right">7000 Ft</p></td>
<td><p class="right bold">7000 Ft</p></td>
</tr>
<!--ISMETLES IDE-->
<tr class="notable">
<td>
<a href="/add_user" class="usertag only-outline"> + Új user </a>
</td>
<td>
<p> </p>
</td>
</tr>
</tbody>
</table>
<div class="middle">
<a href="/add_expense" class="sbtn"><h4> + Új költés </h4></a>
<a href="/add_transfer" class="sbtn"><h4> + Új utalás</h4></a>
</div>
</body>
</html>