Made Add Ticket to Project Functionable

This commit is contained in:
johnnyq
2024-04-01 17:21:59 -04:00
parent 365cd79999
commit e5e17c669f
3 changed files with 71 additions and 1 deletions

View File

@@ -124,7 +124,7 @@ if (isset($_GET['project_id'])) {
<button class="btn btn-secondary btn-sm" type="button" id="dropdownMenuButton" data-toggle="dropdown">
<i class="fas fa-fw fa-ellipsis-v"></i>
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<div class="dropdown-menu">
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#editProjectModal<?php echo $project_id; ?>">
<i class="fas fa-fw fa-edit mr-2"></i>Edit
</a>
@@ -337,6 +337,7 @@ if (isset($_GET['project_id'])) {
<?php
require_once "project_edit_modal.php";
require_once "project_ticket_add_modal.php";
}