2024-11-02 17:06:56 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2024-11-02 20:04:56 +00:00
|
|
|
<title>KTVManager</title>
|
2024-11-02 17:06:56 +00:00
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
|
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.24/css/jquery.dataTables.min.css">
|
2024-11-02 20:15:23 +00:00
|
|
|
<link rel="stylesheet" href="https://cdn.datatables.net/responsive/2.2.9/css/responsive.dataTables.min.css">
|
2024-11-02 17:06:56 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-11-02 20:15:23 +00:00
|
|
|
<!-- Navbar -->
|
2024-11-02 17:06:56 +00:00
|
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
2024-11-02 20:24:36 +00:00
|
|
|
<a class="navbar-brand" href="/">KTVManager</a>
|
2024-11-02 17:06:56 +00:00
|
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
|
|
<span class="navbar-toggler-icon"></span>
|
|
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
|
|
<ul class="navbar-nav ml-auto">
|
2024-11-03 15:35:22 +00:00
|
|
|
<li class="nav-item"><a class="nav-link" href="/">Home</a></li>
|
|
|
|
<li class="nav-item"><a class="nav-link" href="/accounts">Accounts</a></li>
|
|
|
|
<li class="nav-item"><a class="nav-link" href="/urls">URLs</a></li>
|
2024-11-02 17:06:56 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
2024-11-04 16:39:02 +00:00
|
|
|
<!-- Sub-navigation for Accounts -->
|
|
|
|
<div class="bg-light py-2">
|
|
|
|
<div class="container">
|
|
|
|
<ul class="nav nav-pills">
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link active" href="/accounts">List Accounts</a>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link" href="/accounts/add">Add Account</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2024-11-02 17:06:56 +00:00
|
|
|
<!-- Main Content -->
|
|
|
|
<div class="container mt-5">
|
2024-11-02 20:04:56 +00:00
|
|
|
<h2>{{ username }}'s Accounts</h2>
|
2024-11-02 20:15:23 +00:00
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-striped" id="accountsTable">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2024-11-05 15:54:21 +00:00
|
|
|
<!-- <th>#</th> -->
|
2024-11-02 20:15:23 +00:00
|
|
|
<th>Username</th>
|
|
|
|
<th>Stream</th>
|
|
|
|
<th>Stream URL</th>
|
|
|
|
<th>Expiry Date</th>
|
|
|
|
<th>Password</th>
|
2024-11-03 15:35:22 +00:00
|
|
|
<th>Actions</th>
|
2024-11-02 20:15:23 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for account in user_accounts %}
|
|
|
|
<tr>
|
2024-11-05 15:54:21 +00:00
|
|
|
<!-- <td>{{ loop.index }}</td> -->
|
2024-11-02 20:15:23 +00:00
|
|
|
<td>{{ account.username }}</td>
|
|
|
|
<td>{{ account.stream }}</td>
|
|
|
|
<td><a href="{{ account.streamURL }}" target="_blank">{{ account.streamURL }}</a></td>
|
|
|
|
<td>{{ account.expiaryDate_rendered }}</td>
|
2024-11-04 16:39:02 +00:00
|
|
|
<td>{{ account.password }}</td>
|
2024-11-03 15:35:22 +00:00
|
|
|
<td>
|
2024-11-04 16:39:02 +00:00
|
|
|
<form action="/accounts/delete" method="POST" style="display:inline;">
|
|
|
|
<input type="hidden" name="stream" value="{{ account.stream }}">
|
|
|
|
<input type="hidden" name="username" value="{{ account.username }}">
|
|
|
|
<button type="submit" class="btn btn-danger" onclick="return confirm('Are you sure you want to delete this account?');">
|
|
|
|
Delete
|
|
|
|
</button>
|
|
|
|
</form>
|
2024-11-02 20:15:23 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2024-11-02 17:06:56 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<footer class="bg-dark text-white text-center py-3 mt-5">
|
2024-11-02 20:04:56 +00:00
|
|
|
<p>© 2024 KTVManager | All rights reserved</p>
|
2024-11-02 17:06:56 +00:00
|
|
|
</footer>
|
|
|
|
|
|
|
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.0.7/dist/umd/popper.min.js"></script>
|
|
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
|
|
|
<script src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.min.js"></script>
|
2024-11-03 15:35:22 +00:00
|
|
|
<script src="https://cdn.datatables.net/responsive/2.2.9/js/dataTables.responsive.min.js"></script>
|
2024-11-02 17:06:56 +00:00
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
2024-11-05 14:34:53 +00:00
|
|
|
// Extend DataTables date sorting for DD/MM/YYYY format
|
|
|
|
$.fn.dataTable.ext.type.order['date-eu-pre'] = function(data) {
|
2024-11-02 17:06:56 +00:00
|
|
|
const parts = data.split('/');
|
2024-11-05 14:34:53 +00:00
|
|
|
// Check if the data is in the correct format before processing
|
|
|
|
if (parts.length === 3) {
|
|
|
|
return new Date(parts[2], parts[1] - 1, parts[0]).getTime();
|
|
|
|
}
|
|
|
|
return data; // return as is if the format is unexpected
|
2024-11-02 17:06:56 +00:00
|
|
|
};
|
2024-11-05 14:34:53 +00:00
|
|
|
|
2024-11-05 15:54:21 +00:00
|
|
|
// Initialize DataTable with custom sorting and default ordering by Expiry Date
|
2024-11-03 15:35:22 +00:00
|
|
|
$('#accountsTable').DataTable({
|
2024-11-02 17:06:56 +00:00
|
|
|
"searching": true,
|
|
|
|
"ordering": true,
|
2024-11-03 15:35:22 +00:00
|
|
|
"responsive": true,
|
2024-11-05 15:54:21 +00:00
|
|
|
"order": [[3, 'asc']], // Default order by Expiry Date column in ascending order
|
2024-11-02 17:06:56 +00:00
|
|
|
"columnDefs": [
|
2024-11-05 15:54:21 +00:00
|
|
|
{ "type": "date-eu", "targets": 3 } // Use custom date-eu type for the date column
|
2024-11-02 17:06:56 +00:00
|
|
|
]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
2024-11-05 14:34:53 +00:00
|
|
|
|
2024-11-05 15:54:21 +00:00
|
|
|
|
2024-11-02 17:06:56 +00:00
|
|
|
</body>
|
|
|
|
</html>
|