diff --git a/src/app/templates/_quotation_details.html b/src/app/templates/_quotation_details.html index 578a71f..ccc0908 100644 --- a/src/app/templates/_quotation_details.html +++ b/src/app/templates/_quotation_details.html @@ -121,10 +121,10 @@ {% if show_actions %}
- Back to Quotations + Back to Quotations
{% endif %} diff --git a/src/app/templates/admin/quotation_detail.html b/src/app/templates/admin/quotation_detail.html index 9841421..6cb0b68 100644 --- a/src/app/templates/admin/quotation_detail.html +++ b/src/app/templates/admin/quotation_detail.html @@ -1,16 +1,18 @@ {% extends "admin/base.html" %} -{% block admin_title %}Quotation Details{% endblock %} +{% block title %}Quotation Details - Admin Panel{% endblock %} -{% block admin_header %}Quotation Details{% endblock %} +{% block content %} +
+

+ + Quotation Details #{{ quotation.id }} +

+ + Back to Quotations + +
-{% block admin_actions %} - - Back to Quotations - -{% endblock %} - -{% block admin_content %} {% from "_quotation_details.html" import render_quotation_details %} {{ render_quotation_details(quotation) }} {% endblock %}