diff --git a/templates/customers/view_customer.html b/templates/customers/view_customer.html
index ad1884a5..cbd38052 100644
--- a/templates/customers/view_customer.html
+++ b/templates/customers/view_customer.html
@@ -147,20 +147,20 @@
{% for lead in leads %}
- | {{lead}} ({{ forloop.counter }}) |
- {{lead.opportunity}} ({{ forloop.counter }}) |
+ {{lead}} ({{ forloop.counter }}) |
+ {{lead.opportunity}} ({{ forloop.counter }}) |
{% for estimate in lead.customer.customer_model.estimatemodel_set.all %}
- {{estimate}}
+
{% endfor %}
|
{% for estimate in lead.customer.customer_model.estimatemodel_set.all %}
- {{estimate.sale_orders.first}}
+
{% endfor %}
|
@@ -169,11 +169,11 @@
{% if invoice.is_paid %}
- {{invoice}}
+
{%else%}
- {{invoice}}
+
{% endif %}
@@ -182,7 +182,7 @@
{% for estimate in lead.customer.customer_model.invoicemodel_set.all %}
- {{estimate.itemtransactionmodel_set.first.item_model.name}}
+
{% endfor %}
|
diff --git a/templates/empty-illustration-page.html b/templates/empty-illustration-page.html
index 1e305b2e..30ee8b0c 100644
--- a/templates/empty-illustration-page.html
+++ b/templates/empty-illustration-page.html
@@ -19,7 +19,7 @@
align-items: center; /* Center content horizontally */
}
.empty-state-image {
- max-width: 50%; /* Responsive image size */
+ max-width: 40%; /* Responsive image size */
height: auto;
margin-bottom: 10px;
border-radius: 10px; /* Rounded corners for image */
|