Update templates/menu.html
Browse files- templates/menu.html +2 -1
templates/menu.html
CHANGED
@@ -402,7 +402,8 @@ form-check-input addon-option{
|
|
402 |
<span>{{ first_letter }}</span> <!-- Display the first letter of the customer's name -->
|
403 |
</div>
|
404 |
<div class="dropdown-menu">
|
405 |
-
<a href="{{ url_for('customer_details') }}"
|
|
|
406 |
<a href="{{ url_for('order_history') }}" class="dropdown-item">Order History</a>
|
407 |
<a href="{{ url_for('logout') }}" class="dropdown-item">Logout</a>
|
408 |
</div>
|
|
|
402 |
<span>{{ first_letter }}</span> <!-- Display the first letter of the customer's name -->
|
403 |
</div>
|
404 |
<div class="dropdown-menu">
|
405 |
+
<a href="{{ url_for('user_details.customer_details') }}">View Customer Details</a>
|
406 |
+
|
407 |
<a href="{{ url_for('order_history') }}" class="dropdown-item">Order History</a>
|
408 |
<a href="{{ url_for('logout') }}" class="dropdown-item">Logout</a>
|
409 |
</div>
|