updated directories

This commit is contained in:
Berkay 2025-05-10 13:34:07 +03:00
parent af3ea127ca
commit 2368151433
10 changed files with 62 additions and 0 deletions

View File

View File

View File

View File

View File

View File

@ -0,0 +1,62 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gelen Banka Kayıtları</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
table {
width: 100%;
border-collapse: collapse;
}
table,
th,
td {
border: 1px solid black;
}
th,
td {
padding: 10px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h1>Günaydın, Admin</h1>
<br />
<p>Banka Kayıtları : {{today}}</p>
<p><b>Son Bakiye : {{bank_balance}} </b></p>
<p>
<b
>{{"Status : İkinci Bakiye Hatalı" if balance_error else "Status
:OK"}}</b
>
</p>
<table border="1">
<thead>
<tr>
{% for header in headers %}
<th>{{ header }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in rows %}
<tr>
{% for cell in row %}
<td>{{ cell }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
<p>Teşekkür ederiz,<br />Evyos Yönetim<br />Saygılarımızla</p>
</body>
</html>