More work on #324 Products and Clients

This commit is contained in:
johnnyq
2022-01-23 20:58:27 -05:00
parent 2beb897803
commit 5e9eb4d27d
8 changed files with 21 additions and 21 deletions

View File

@@ -244,9 +244,9 @@ $location_phone = formatPhoneNumber($location_phone);
<a class="dropdown-item" href="post.php?export_client_pdf=<?php echo $client_id; ?>">Export PDF<br><small class="text-secondary">(without passwords)</small></a>
<a class="dropdown-item" href="post.php?export_client_pdf=<?php echo $client_id; ?>&passwords">Export PDF<br><small class="text-secondary">(with passwords)</small></a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#editClientModal<?php echo $client_id; ?>">Edit</a>
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#clientEditModal<?php echo $client_id; ?>">Edit</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-danger" href="#" data-toggle="modal" data-target="#deleteClientModal<?php echo $client_id; ?>">Delete</a>
<a class="dropdown-item text-danger" href="#" data-toggle="modal" data-target="#clientDeleteModal<?php echo $client_id; ?>">Delete</a>
</div>
</div>
</div>
@@ -257,9 +257,9 @@ $location_phone = formatPhoneNumber($location_phone);
<?php
include("client_routes.php");
include("edit_client_modal.php");
include("client_edit_modal.php");
include("add_quick_modal.php");
include("delete_client_modal.php");
include("client_delete_modal.php");
}