Update Breadcrumbs to always have a link to the client for fast access to the client section. The breadcrumb order will change depending how you access using the global view or within the client section on Invoice, Quote, Ticket, Recurring Invoice

This commit is contained in:
johnnyq
2024-11-20 12:41:29 -05:00
parent 1e4306381f
commit fe24e3bcea
5 changed files with 21 additions and 10 deletions

View File

@@ -118,6 +118,9 @@ if (isset($_GET['quote_id'])) {
<li class="breadcrumb-item">
<a href="quotes.php">Quotes</a>
</li>
<li class="breadcrumb-item">
<a href="client_quotes.php?client_id=<?php echo $client_id; ?>"><?php echo $client_name; ?></a>
</li>
<?php } ?>
<li class="breadcrumb-item active"><?php echo "$quote_prefix$quote_number"; ?></li>
</ol>