59 lines
1.6 KiB
HTML
59 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
{{ template "header" . }}
|
|
</head>
|
|
<body data-bs-theme="dark" class="h-auto">
|
|
<div class="container-xxl bg-dark mt-5 p-4 rounded-3 text-light">
|
|
<div class="row">
|
|
<!-- Home-Clan Column -->
|
|
<div class="col-md-6 d-flex flex-column border-end px-3 pb-4">
|
|
<h4 class="text-center mt-2 pb-3 mb-3 border-bottom"><i class="bi bi-people me-3"></i>Heim-Team</h4>
|
|
<!-- Clan Selection -->
|
|
{{ template "home_clan_bar" . }}
|
|
|
|
<!-- Player List -->
|
|
{{ template "home_player_list" . }}
|
|
</div>
|
|
|
|
<!-- Opponent-Clan Column -->
|
|
<div class="col-md-6 d-flex flex-column px-3 pb-4">
|
|
<h4 class="text-center mt-2 pb-3 mb-3 border-bottom"><i class="bi bi-people me-3"></i>Gegner-Team</h4>
|
|
<!-- Clan Selection -->
|
|
{{ template "opp_clan_bar" . }}
|
|
|
|
<!-- Player List -->
|
|
{{ template "opp_player_list" . }}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Bottom Controls -->
|
|
{{ template "bottom_controls" . }}
|
|
</div>
|
|
|
|
<!-- Delete Clan Modal -->
|
|
{{ template "delete_clan" . }}
|
|
<!-- Add Clan Modal -->
|
|
{{ template "add_clan" . }}
|
|
<!-- Edit Clan Modal -->
|
|
{{ template "edit_clan" . }}
|
|
|
|
<!-- Add Player Modal -->
|
|
{{ template "add_player" . }}
|
|
<!-- Delete Player Modal -->
|
|
{{ template "delete_player" . }}
|
|
<!-- Edit Player Modal -->
|
|
{{ template "edit_player" . }}
|
|
|
|
<!-- Settings Modal -->
|
|
{{ template "settings" . }}
|
|
|
|
<script lang="javascript">
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
loadClans();
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|