fix: sync CSS classes with refactored layout, restore missing sidebar items, add asset versioning, fix routes and auth

This commit is contained in:
2026-06-14 08:54:37 -04:00
parent c9ab2ca98b
commit d1da560764
31 changed files with 230 additions and 245 deletions

View File

@@ -71,4 +71,4 @@
<input type="hidden" name="_csrf_token" value="<?= $this->csrfToken() ?>">
</form>
<script src="/assets/js/team-index.js"></script>
<script src="/assets/js/team-index.js?v=<?= asset_version() ?>"></script>

View File

@@ -150,4 +150,4 @@ const teamId = <?= $team['id'] ?>;
const teamName = '<?= htmlspecialchars(addslashes($team['name'] ?? '')) ?>';
const teamDescription = '<?= htmlspecialchars(addslashes($team['description'] ?? '')) ?>';
</script>
<script src="/assets/js/team-show.js"></script>
<script src="/assets/js/team-show.js?v=<?= asset_version() ?>"></script>