Kanban - move to v2 (rewritten style)

This commit is contained in:
wrongecho
2026-01-21 13:15:23 +00:00
parent f0f1134be6
commit 1712d34846
2 changed files with 1 additions and 161 deletions

View File

@@ -247,8 +247,7 @@ $sql_categories_filter = mysqli_query(
<a class="dropdown-item" href="<?=htmlspecialchars('?' . http_build_query(array_merge($_GET, ['view' => 'list']))); ?>">List</a>
<?php if ($status !== 'Closed') {?>
<div class="dropdown-divider"></div>
<a class="dropdown-item " href="<?=htmlspecialchars('?' . http_build_query(array_merge($_GET, ['view' => 'kanban']))); ?>">Kanban</a>
<a class="dropdown-item " href="<?=htmlspecialchars('?' . http_build_query(array_merge($_GET, ['view' => 'kanbanv2']))); ?>">Kanban (v2)</a>
<a class="dropdown-item " href="<?=htmlspecialchars('?' . http_build_query(array_merge($_GET, ['view' => 'kanbanv2']))); ?>">Kanban</a>
<?php } ?>
</div>
</div>
@@ -423,8 +422,6 @@ $sql_categories_filter = mysqli_query(
if (isset($_GET["view"])) {
if ($_GET["view"] == "list") {
require_once "ticket_list.php";
} elseif ($_GET["view"] == "kanban") {
require_once "ticket_kanban.php";
} elseif ($_GET["view"] == "kanbanv2") {
require_once "ticket_kanban_v2.php";
}