Initial commit
This commit is contained in:
15
templates/components/bottom_controls.html
Normal file
15
templates/components/bottom_controls.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{{ define "bottom_controls" }}
|
||||
|
||||
<div class="row justify-content-between border-top pt-4">
|
||||
<div class="col-md-auto">
|
||||
<button class="btn btn-lg btn-outline-secondary text-secondary-emphasis w-100"><i class="bi bi-gear-fill me-2"></i>Einstellungen</button>
|
||||
</div>
|
||||
<div class="col-md-auto">
|
||||
<button class="btn btn-lg btn-outline-primary w-100"><i class="bi bi-calculator-fill me-2"></i>Berechnen</button>
|
||||
</div>
|
||||
<div class="col-md-auto">
|
||||
<button class="btn btn-lg btn-outline-secondary text-secondary-emphasis w-100"><i class="bi bi-person me-2"></i>Einzel-Abfrage</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{ end }}
|
||||
12
templates/components/header.html
Normal file
12
templates/components/header.html
Normal file
@@ -0,0 +1,12 @@
|
||||
{{ define "header" }}
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Infantry Skill Calculator</title>
|
||||
<script src="https://unpkg.com/htmx.org@1.9.6"></script>
|
||||
<!-- Bootstrap 5 CSS -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
||||
<link rel="stylesheet" href="../static/index.css">
|
||||
|
||||
{{ end }}
|
||||
41
templates/components/home_clan_bar.html
Normal file
41
templates/components/home_clan_bar.html
Normal file
@@ -0,0 +1,41 @@
|
||||
{{ define "home_clan_bar" }}
|
||||
|
||||
<div class="row g-2">
|
||||
<div class="col-auto">
|
||||
<label for="home-clan" class="col-form-label col-form-label-lg">Clans:</label>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="input-group input-group-lg mb-3">
|
||||
<select class="form-select form-control border-secondary" id="home-clan" hx-get="/players" hx-target="#home-player-list">
|
||||
<option disabled selected value>Auswählen...</option>
|
||||
{{ range .clans }}
|
||||
<option value="{{ .ID }}">[{{ .Tag }}] {{ .Name }}</option>
|
||||
{{ end }}
|
||||
</select>
|
||||
<button class="btn btn-lg btn-outline-secondary text-danger" type="button" id="home-delete" data-bs-toggle="modal" data-bs-list="#home-clan" data-bs-target="#deleteClanModal" disabled>
|
||||
<i class="bi bi-trash3"></i>
|
||||
</button>
|
||||
<button class="btn btn-lg btn-outline-secondary text-primary" type="button" data-bs-toggle="modal" data-bs-list="#home-clan" data-bs-target="#editClanModal" id="home-edit" disabled>
|
||||
<i class="bi bi-pencil-fill"></i>
|
||||
</button>
|
||||
<button class="btn btn-lg btn-outline-secondary text-success" type="button" data-bs-toggle="modal" data-bs-list="#home-clan" data-bs-target="#addClanModal" id="home-add">
|
||||
<i class="bi bi-plus-lg"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script lang="javascript">
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const dropdownHome = document.getElementById('home-clan');
|
||||
const deleteButtonHome = document.getElementById('home-delete');
|
||||
const editButtonHome = document.getElementById('home-edit');
|
||||
|
||||
dropdownHome.addEventListener('change', function () {
|
||||
deleteButtonHome.disabled = !this.value;
|
||||
editButtonHome.disabled = !this.value;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
{{ end }}
|
||||
22
templates/components/home_player_bar.html
Normal file
22
templates/components/home_player_bar.html
Normal file
@@ -0,0 +1,22 @@
|
||||
{{ define "home_player_bar" }}
|
||||
|
||||
<div class="row mt-3 justify-content-between align-items-center">
|
||||
<div class="col-auto">
|
||||
<div class="btn-group btn-group-lg" role="group">
|
||||
<button type="button" class="btn btn-outline-secondary text-secondary-emphasis py-1 px-3"><i class="bi bi-check-square fs-4"></i></button>
|
||||
<button type="button" class="btn btn-outline-secondary text-secondary-emphasis py-1 px-3"><i class="bi bi-square fs-4"></i></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col px-0">
|
||||
<span class="badge fs-5 w-100 text-secondary-emphasis">0 von 0 ausgewählt</span>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<div class="btn-group btn-group-lg" role="group">
|
||||
<button type="button" class="btn btn-outline-secondary text-danger py-1 px-3"><i class="bi bi-person-dash fs-4"></i></button>
|
||||
<button type="button" class="btn btn-outline-secondary text-primary py-1 px-3"><i class="bi bi-person-gear fs-4"></i></button>
|
||||
<button type="button" class="btn btn-outline-secondary text-success py-1 px-3"><i class="bi bi-person-add fs-4"></i></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{ end }}
|
||||
8
templates/components/home_player_list.html
Normal file
8
templates/components/home_player_list.html
Normal file
@@ -0,0 +1,8 @@
|
||||
{{ define "home_player_list" }}
|
||||
|
||||
<label for="home-player-list" class="col-form-label col-form-label-lg pt-0">Spieler:</label>
|
||||
<select multiple class="form-control form-control-lg overflow-auto border-secondary" id="home-player-list" size="10">
|
||||
<!-- Player list items go here -->
|
||||
</select>
|
||||
|
||||
{{ end }}
|
||||
41
templates/components/opp_clan_bar.html
Normal file
41
templates/components/opp_clan_bar.html
Normal file
@@ -0,0 +1,41 @@
|
||||
{{ define "opp_clan_bar" }}
|
||||
|
||||
<div class="row g-2">
|
||||
<div class="col-auto">
|
||||
<label for="opponent-clan" class="col-form-label col-form-label-lg">Clans:</label>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="input-group input-group-lg mb-3">
|
||||
<select class="form-select form-control border-secondary" id="opponent-clan" hx-get="/players" hx-target="#opponent-player-list">
|
||||
<option disabled selected value>Auswählen...</option>
|
||||
{{ range .clans }}
|
||||
<option value="{{ .ID }}">[{{ .Tag }}] {{ .Name }}</option>
|
||||
{{ end }}
|
||||
</select>
|
||||
<button class="btn btn-lg btn-outline-secondary text-danger" type="button" id="opponent-delete" data-bs-toggle="modal" data-bs-list="#opponent-clan" data-bs-target="#deleteClanModal" disabled>
|
||||
<i class="bi bi-trash3"></i>
|
||||
</button>
|
||||
<button class="btn btn-lg btn-outline-secondary text-primary" type="button" data-bs-toggle="modal" data-bs-list="#opponent-clan" data-bs-target="#editClanModal" id="opponent-edit" disabled>
|
||||
<i class="bi bi-pencil-fill"></i>
|
||||
</button>
|
||||
<button class="btn btn-lg btn-outline-secondary text-success" type="button" data-bs-toggle="modal" data-bs-list="#opponent-clan" data-bs-target="#addClanModal" id="opponent-add">
|
||||
<i class="bi bi-plus-lg"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script lang="javascript">
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const dropdownOpponent = document.getElementById('opponent-clan');
|
||||
const deleteButtonOpponent = document.getElementById('opponent-delete');
|
||||
const editButtonOpponent = document.getElementById('opponent-edit');
|
||||
|
||||
dropdownOpponent.addEventListener('change', function () {
|
||||
deleteButtonOpponent.disabled = !this.value;
|
||||
editButtonOpponent.disabled = !this.value;
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
{{ end }}
|
||||
22
templates/components/opp_player_bar.html
Normal file
22
templates/components/opp_player_bar.html
Normal file
@@ -0,0 +1,22 @@
|
||||
{{ define "opp_player_bar" }}
|
||||
|
||||
<div class="row mt-3 justify-content-between align-items-center">
|
||||
<div class="col-auto">
|
||||
<div class="btn-group btn-group-lg" role="group">
|
||||
<button type="button" class="btn btn-outline-secondary text-secondary-emphasis py-1 px-3"><i class="bi bi-check-square fs-4"></i></button>
|
||||
<button type="button" class="btn btn-outline-secondary text-secondary-emphasis py-1 px-3"><i class="bi bi-square fs-4"></i></button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col px-0">
|
||||
<span class="badge fs-5 w-100 text-secondary-emphasis">0 von 0 ausgewählt</span>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<div class="btn-group btn-group-lg" role="group">
|
||||
<button type="button" class="btn btn-outline-secondary text-danger py-1 px-3"><i class="bi bi-person-dash fs-4"></i></button>
|
||||
<button type="button" class="btn btn-outline-secondary text-primary py-1 px-3"><i class="bi bi-person-gear fs-4"></i></button>
|
||||
<button type="button" class="btn btn-outline-secondary text-success py-1 px-3"><i class="bi bi-person-add fs-4"></i></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{ end }}
|
||||
8
templates/components/opp_player_list.html
Normal file
8
templates/components/opp_player_list.html
Normal file
@@ -0,0 +1,8 @@
|
||||
{{ define "opp_player_list" }}
|
||||
|
||||
<label for="opponent-player-list" class="col-form-label col-form-label-lg pt-0">Spieler:</label>
|
||||
<select multiple class="form-control form-control-lg overflow-auto border-secondary" id="opponent-player-list" size="10">
|
||||
<!-- Player list items go here -->
|
||||
</select>
|
||||
|
||||
{{ end }}
|
||||
56
templates/index.html
Normal file
56
templates/index.html
Normal file
@@ -0,0 +1,56 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
{{ template "header" . }}
|
||||
</head>
|
||||
<body data-bs-theme="dark">
|
||||
<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">Heim-Team</h4>
|
||||
<!-- Clan Selection -->
|
||||
{{ template "home_clan_bar" . }}
|
||||
|
||||
<!-- Player List -->
|
||||
{{ template "home_player_list" . }}
|
||||
|
||||
<!-- List Controls -->
|
||||
{{ template "home_player_bar" . }}
|
||||
</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">Gegner-Team</h4>
|
||||
<!-- Clan Selection -->
|
||||
{{ template "opp_clan_bar" . }}
|
||||
|
||||
<!-- Player List -->
|
||||
{{ template "opp_player_list" . }}
|
||||
|
||||
<!-- List Controls -->
|
||||
{{ template "opp_player_bar" . }}
|
||||
</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" . }}
|
||||
<script lang="javascript">
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
<!-- Bootstrap 5 JS Bundle with Popper -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
80
templates/modals/add_clan.html
Normal file
80
templates/modals/add_clan.html
Normal file
@@ -0,0 +1,80 @@
|
||||
{{ define "add_clan" }}
|
||||
|
||||
<div class="modal fade" id="addClanModal" tabindex="-1">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title fs-3 text-success fw-bold" id="addClanModalLabel">Clan hinzufügen</h1>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="form-floating mb-3">
|
||||
<input type="text" class="form-control form-control-lg" id="clanName" placeholder="Clan-Name">
|
||||
<label for="clanName">Clan-Name</label>
|
||||
</div>
|
||||
<div class="form-floating">
|
||||
<input type="text" class="form-control form-control-lg" id="clanTag" placeholder="Clan-Tag">
|
||||
<label for="clanTag">Clan-Tag</label>
|
||||
</div>
|
||||
<div class="form-check form-check-inline mt-3 fs-5">
|
||||
<input class="form-check-input" type="checkbox" id="keepUpdated" value="keepUpdated">
|
||||
<label class="form-check-label" for="keepUpdated">Immer aktuell halten</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="submit" name="submit" class="btn btn-lg btn-primary">Hinzufügen</button>
|
||||
<button type="button" class="btn btn-lg btn-secondary" data-bs-dismiss="modal">Abbrechen</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script lang="javascript">
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const addClanModal = document.getElementById('addClanModal');
|
||||
const addClanModalBS = new bootstrap.Modal('#addClanModal');
|
||||
if (addClanModal) {
|
||||
addClanModal.addEventListener('shown.bs.modal', event => {
|
||||
const submitButton = addClanModal.querySelector('button[name="submit"]');
|
||||
submitButton.addEventListener('click', function () {
|
||||
const button = event.relatedTarget;
|
||||
const clanListId = button.getAttribute('data-bs-list');
|
||||
const clanList = document.querySelector(clanListId);
|
||||
|
||||
const clanName = addClanModal.querySelector('#clanName');
|
||||
const clanTag = addClanModal.querySelector('#clanTag');
|
||||
const keepUpdated = addClanModal.querySelector('#keepUpdated');
|
||||
|
||||
fetch("/clan", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({
|
||||
name: clanName.value,
|
||||
tag: clanTag.value,
|
||||
keep_updated: keepUpdated.checked
|
||||
}),
|
||||
headers: {
|
||||
"Content-type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.then((response) => {
|
||||
if (response.ok) {
|
||||
const opt = document.createElement('option');
|
||||
opt.innerText = "[" + clanTag.value + "]" + " " + clanName.value;
|
||||
opt.value = response.json()['ID'];
|
||||
clanList.appendChild(opt);
|
||||
clanList.selectedIndex = clanList.children.length - 1;
|
||||
clanList.dispatchEvent(new Event('change'));
|
||||
addClanModalBS.hide();
|
||||
clanName.value = "";
|
||||
clanTag.value = "";
|
||||
keepUpdated.checked = false;
|
||||
} else
|
||||
throw new Error(response.error)
|
||||
});
|
||||
})
|
||||
});
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
{{ end }}
|
||||
66
templates/modals/delete_clan.html
Normal file
66
templates/modals/delete_clan.html
Normal file
@@ -0,0 +1,66 @@
|
||||
{{ define "delete_clan" }}
|
||||
|
||||
<div class="modal modal-lg fade" id="deleteClanModal" tabindex="-1">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title fs-3 text-danger fw-bold" id="deleteClanModalLabel">Clan löschen</h1>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
|
||||
</div>
|
||||
<div class="modal-body fs-5">
|
||||
Möchtest du den Clan "<span id="clan"></span>" wirklich löschen?
|
||||
<br><br>
|
||||
Diese Aktion kann nicht rückgängig gemacht werden.
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="submit" name="submit" class="btn btn-lg btn-danger">Löschen</button>
|
||||
<button type="button" class="btn btn-lg btn-secondary" data-bs-dismiss="modal">Abbrechen</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script lang="javascript">
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const deleteClanModal = document.getElementById('deleteClanModal')
|
||||
const deleteClanModalBS = new bootstrap.Modal('#deleteClanModal');
|
||||
if (deleteClanModal) {
|
||||
deleteClanModal.addEventListener('show.bs.modal', event => {
|
||||
const button = event.relatedTarget;
|
||||
const clanListId = button.getAttribute('data-bs-list');
|
||||
const clanList = document.querySelector(clanListId);
|
||||
const selectedClan = clanList.options[clanList.selectedIndex].text;
|
||||
|
||||
const modalBodyInput = deleteClanModal.querySelector('#clan');
|
||||
modalBodyInput.innerText = selectedClan;
|
||||
|
||||
const submitButton = deleteClanModal.querySelector('button[name="submit"]');
|
||||
submitButton.addEventListener('click', function () {
|
||||
const button = event.relatedTarget;
|
||||
const clanListId = button.getAttribute('data-bs-list');
|
||||
const clanList = document.querySelector(clanListId);
|
||||
|
||||
const clanId = parseInt(clanList.value);
|
||||
|
||||
fetch("/clan/" + clanId, {
|
||||
method: "DELETE",
|
||||
headers: {
|
||||
"Content-type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.then((response) => {
|
||||
if (response.ok) {
|
||||
clanList.removeChild(clanList.children[clanList.selectedIndex]);
|
||||
clanList.selectedIndex = 0;
|
||||
clanList.dispatchEvent(new Event('change'));
|
||||
deleteClanModalBS.hide();
|
||||
} else
|
||||
throw new Error(response.error)
|
||||
});
|
||||
})
|
||||
});
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
{{ end }}
|
||||
97
templates/modals/edit_clan.html
Normal file
97
templates/modals/edit_clan.html
Normal file
@@ -0,0 +1,97 @@
|
||||
{{ define "edit_clan" }}
|
||||
|
||||
<div class="modal fade" id="editClanModal" tabindex="-1">
|
||||
<div class="modal-dialog modal-dialog-centered">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title fs-3 text-success fw-bold" id="editClanModalLabel">Clan bearbeiten</h1>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="form-floating mb-3">
|
||||
<input type="text" class="form-control form-control-lg" id="editClanName" placeholder="Clan-Name">
|
||||
<label for="editClanName">Clan-Name</label>
|
||||
</div>
|
||||
<div class="form-floating">
|
||||
<input type="text" class="form-control form-control-lg" id="editClanTag" placeholder="Clan-Tag">
|
||||
<label for="editClanTag">Clan-Tag</label>
|
||||
</div>
|
||||
<div class="form-check form-check-inline mt-3 fs-5">
|
||||
<input class="form-check-input" type="checkbox" id="editKeepUpdated" value="keepUpdated">
|
||||
<label class="form-check-label" for="editKeepUpdated">Immer aktuell halten</label>
|
||||
</div>
|
||||
<input type="hidden" id="editClanId" value="">
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="submit" name="submit" class="btn btn-lg btn-primary">Speichern</button>
|
||||
<button type="button" class="btn btn-lg btn-secondary" data-bs-dismiss="modal">Abbrechen</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script lang="javascript">
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
|
||||
const editClanModal = document.getElementById('editClanModal');
|
||||
const editClanModalBS = new bootstrap.Modal('#editClanModal');
|
||||
if (editClanModal) {
|
||||
editClanModal.addEventListener('show.bs.modal', event => {
|
||||
const button = event.relatedTarget;
|
||||
const clanListId = button.getAttribute('data-bs-list');
|
||||
const clanList = document.querySelector(clanListId);
|
||||
const selectedClanItem = clanList.options[clanList.selectedIndex];
|
||||
|
||||
const clanName = editClanModal.querySelector('#editClanName');
|
||||
const clanTag = editClanModal.querySelector('#editClanTag');
|
||||
const keepUpdated = editClanModal.querySelector('#editKeepUpdated');
|
||||
const clanId = parseInt(clanList.value);
|
||||
const submitButton = editClanModal.querySelector('button[name="submit"]');
|
||||
|
||||
fetch("/clan/" + clanId, {
|
||||
method: "GET",
|
||||
headers: {
|
||||
"Content-type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.then((response) => {
|
||||
return response.json();
|
||||
})
|
||||
.then((result) => {
|
||||
keepUpdated.checked = result['keep_updated'];
|
||||
clanName.value = result['name'];
|
||||
clanTag.value = result['tag'];
|
||||
})
|
||||
.catch((error) => {
|
||||
throw new Error(error);
|
||||
});
|
||||
|
||||
submitButton.addEventListener('click', function () {
|
||||
fetch("/clan/" + clanId, {
|
||||
method: "PATCH",
|
||||
body: JSON.stringify({
|
||||
name: clanName.value,
|
||||
tag: clanTag.value,
|
||||
keep_updated: keepUpdated.checked
|
||||
}),
|
||||
headers: {
|
||||
"Content-type": "application/json; charset=UTF-8"
|
||||
}
|
||||
})
|
||||
.then((response) => {
|
||||
if (response.ok) {
|
||||
selectedClanItem.innerText = "[" + clanTag.value + "]" + " " + clanName.value;
|
||||
editClanModalBS.hide();
|
||||
clanName.value = "";
|
||||
clanTag.value = "";
|
||||
keepUpdated.checked = false;
|
||||
} else
|
||||
throw new Error(response.error)
|
||||
});
|
||||
})
|
||||
});
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user