Added a no records placeholder to all tables

This commit is contained in:
johnny@pittpc.com
2019-09-01 21:49:13 -04:00
parent 4579ed3d8c
commit 7f3cdd975f
33 changed files with 166 additions and 228 deletions

12
view_client_note.php Normal file
View File

@@ -0,0 +1,12 @@
<div class="card">
<div class="card-header bg-dark text-white">
<h6 class="float-left mt-1"><i class="fa fa-edit"></i><?php echo $note_subject; ?></h6>
<button class="btn btn-primary btn-sm float-right" data-toggle="modal" data-target="#editNoteModal"><i class="fa fa-plus"></i></button>
</div>
<div class="card-body">
<?php
$Parsedown = new Parsedown();
echo $Parsedown->text("$note_body");
?>
</div>
</div>