Added Contact Details to list contacts assets, logins and software assigned to them

This commit is contained in:
Johnny
2020-12-17 19:36:32 -05:00
parent 04d086d7b6
commit e937bc6a12
2 changed files with 172 additions and 2 deletions

View File

@@ -99,7 +99,7 @@ $total_pages = ceil($total_found_rows / 10);
?>
<tr>
<th class="text-center">
<a class="text-dark" href="#" data-toggle="modal" data-target="#editContactModal<?php echo $contact_id; ?>">
<a class="text-dark" href="#" data-toggle="modal" data-target="#contactDetailsModal<?php echo $contact_id; ?>">
<?php if(!empty($contact_photo)){ ?>
<img height="48" width="48" class="img-fluid rounded-circle" src="<?php echo $contact_photo; ?>">
@@ -142,7 +142,7 @@ $total_pages = ceil($total_found_rows / 10);
<?php
include("edit_contact_modal.php");
include("client_contact_details_modal.php");
}