Generating a Project with Tickets is now possible by selecting a project template when creating a new project

This commit is contained in:
johnnyq
2024-04-07 13:17:52 -04:00
parent d54bcf9a14
commit e1312b29e5
3 changed files with 44 additions and 3 deletions

View File

@@ -23,12 +23,12 @@
</div>
<div class="form-group">
<label>Template <small class="text-info">(WIP)</small></label>
<label>Template</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-cube"></i></span>
</div>
<select class="form-control select2" name="template_id">
<select class="form-control select2" name="project_template_id">
<option value="">- Template -</option>
<?php
$sql = mysqli_query($mysqli, "SELECT * FROM project_templates WHERE project_template_archived_at IS NULL ORDER BY project_template_name ASC");