mirror of
https://github.com/itflow-org/itflow
synced 2026-03-11 00:04:50 +00:00
Fix Project templates listing to not open edit modal when project is clicked
This commit is contained in:
@@ -87,16 +87,16 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<a class="text-dark ajax-modal" href="#" data-modal-url="modals/project_template/project_template_edit.php?project_template_id=<?= $project_template_id ?>">
|
<a class="text-dark" href="project_template_details.php?project_template_id=<?= $project_template_id ?>">
|
||||||
<div class="media">
|
<div class="media">
|
||||||
<i class="fa fa-fw fa-2x fa-project-diagram mr-3"></i>
|
<i class="fa fa-fw fa-2x fa-project-diagram mr-3"></i>
|
||||||
<div class="media-body">
|
<div class="media-body">
|
||||||
<div>
|
<div>
|
||||||
<a href="project_template_details.php?project_template_id=<?php echo $project_template_id; ?>">
|
<?= $project_template_name ?>
|
||||||
<?php echo $project_template_name; ?>
|
</div>
|
||||||
</a>
|
<div>
|
||||||
|
<small class="text-secondary"><?= $project_template_description ?></small>
|
||||||
</div>
|
</div>
|
||||||
<div><small class="text-secondary"><?php echo $project_template_description; ?></small></div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
Reference in New Issue
Block a user