Added Project due to the UI:

This commit is contained in:
johnnyq
2024-03-31 14:02:48 -04:00
parent 2fa86d9ae7
commit b04c2e1232
5 changed files with 18 additions and 25 deletions

View File

@@ -25,6 +25,7 @@ if (isset($_GET['project_id'])) {
$project_id = intval($row['project_id']);
$project_name = nullable_htmlentities($row['project_name']);
$project_description = nullable_htmlentities($row['project_description']);
$project_due = nullable_htmlentities($row['project_due']);
$project_created_at = date("Y-m-d", strtotime($row['project_created_at']));
$project_updated_at = nullable_htmlentities($row['project_updated_at']);
@@ -97,7 +98,7 @@ if (isset($_GET['project_id'])) {
<i class="fa fa-fw fa-2x fa-user text-secondary mr-3"></i>
<div class="media-body">
<h3 class="mb-0"><?php echo $client_name; ?></h3>
<div><small class="text-secondary"><i class="fa fa-fw fa-clock mr-2"></i><?php echo $project_created_at; ?></small></div>
<div><small class="text-secondary"><i class="fa fa-fw fa-clock mr-2"></i><?php echo $project_due; ?></small></div>
</div>
</div>
</div>