mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
Feature: You can now create a ticket from a ticket template
This commit is contained in:
16
tickets.php
16
tickets.php
@@ -109,9 +109,17 @@ $user_active_assigned_tickets = intval($row['total_tickets_assigned']);
|
||||
</small>
|
||||
</h3>
|
||||
<div class='card-tools'>
|
||||
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#addTicketModal">
|
||||
<i class="fas fa-plus mr-2"></i>New Ticket
|
||||
</button>
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#addTicketModal">
|
||||
<i class="fas fa-plus mr-2"></i>New Ticket
|
||||
</button>
|
||||
<button type="button" class="btn btn-primary dropdown-toggle dropdown-toggle-split" data-toggle="dropdown"></button>
|
||||
<div class="dropdown-menu">
|
||||
<a class="dropdown-item text-dark" href="#" data-toggle="modal" data-target="#addTicketFromTemplateModal">
|
||||
<i class="fa fa-fw fa-plus mr-2"></i>From Template
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
@@ -505,4 +513,6 @@ $user_active_assigned_tickets = intval($row['total_tickets_assigned']);
|
||||
<?php
|
||||
require_once "ticket_add_modal.php";
|
||||
|
||||
require_once "ticket_add_from_template_modal.php";
|
||||
|
||||
require_once "footer.php";
|
||||
|
||||
Reference in New Issue
Block a user