Client File upload module created

This commit is contained in:
root
2019-04-20 14:26:50 -04:00
parent d795db8097
commit 7408ae2a00
7 changed files with 137 additions and 9 deletions

View File

@@ -99,12 +99,12 @@
</a>
</li>
<?php } ?>
<?php if($num_attachments > 0){ ?>
<?php if($num_files > 0){ ?>
<li class="nav-item">
<a class="nav-link" href="?client_id=<?php echo $client_id; ?>&tab=attachments">
<a class="nav-link" href="?client_id=<?php echo $client_id; ?>&tab=files">
<i class="fa fa-paperclip"></i><br>
Attachments<br>
<span class="badge badge-pill badge-dark"><?php echo $num_attachments; ?></span>
Files<br>
<span class="badge badge-pill badge-dark"><?php echo $num_files; ?></span>
</a>
</li>
<?php } ?>