"Refactor database connections and add analytics/permissions utils"

This commit is contained in:
2025-05-29 15:41:48 +02:00
parent c8de6b6ca2
commit b916cdaca3
7 changed files with 1404 additions and 27 deletions

View File

@@ -321,7 +321,7 @@ window.isAdmin = {% if current_user.is_admin %}true{% else %}false{% endif %};
// Live Time Update
function updateLiveTime() {
const now = new Date();
const now = new Date();
const timeElement = document.getElementById('live-time');
if (timeElement) {
timeElement.textContent = now.toLocaleTimeString('de-DE');
@@ -360,8 +360,5 @@ function closeJobModal() {
function closeExtendModal() {
hideModal('extendJobModal');
}
// ... existing code ...
</script>
// ... existing code ...
{% endblock %}