View/Download uploaded files #49

Merged
luketainton merged 3 commits from feature/issue-48 into main 2020-08-09 19:22:05 +00:00
Showing only changes of commit 9b4c9ea9ef - Show all commits

View File

@@ -84,7 +84,11 @@
<div class="container">
<div class="row">
<span style="display: inline;"><b>Assigned to:</b></span>
<span class="text-muted" style="display: inline; margin-left: 1%;"><?php echo(get_user_name($db, $request['status']) || "None"); ?></span>
<?php if ($request['assignee'] != null) {
echo("<span style='display: inline; margin-left: 1%;'>" . get_user_name($db, $request['assignee']) . "</span>");
} else {
echo("<span class='text-muted' style='display: inline; margin-left: 1%;'>None</span>");
} ?>
</div>
</div>
</li>