diff --git a/erpnext/templates/includes/transaction_row.html b/erpnext/templates/includes/transaction_row.html
index c3b717d093..fd4835ed99 100644
--- a/erpnext/templates/includes/transaction_row.html
+++ b/erpnext/templates/includes/transaction_row.html
@@ -15,7 +15,7 @@
{% if doc.doctype == "Quotation" and not doc.docstatus %}
- {{ _("Pending For Approval") }}
+ {{ _("Pending") }}
{% else %}
{{ doc.get_formatted("grand_total") }}
{% endif %}
diff --git a/erpnext/templates/pages/order.html b/erpnext/templates/pages/order.html
index 19a10279bc..01b5f6df6c 100644
--- a/erpnext/templates/pages/order.html
+++ b/erpnext/templates/pages/order.html
@@ -12,23 +12,21 @@
{% endblock %}
{% block header_actions %}
- {% if not(doc.doctype == "Quotation" and not doc.docstatus) %}
-
-
-
-
- {% endif %}
+
+
+
+
{% endblock %}
{% block page_content %}
@@ -36,7 +34,11 @@
- {{ _(doc.get('indicator_title')) or _(doc.status) or _("Submitted") }}
+ {% if doc.doctype == "Quotation" and not doc.docstatus %}
+ {{ _("Pending") }}
+ {% else %}
+ {{ _(doc.get('indicator_title')) or _(doc.status) or _("Submitted") }}
+ {% endif %}
@@ -66,46 +68,42 @@
- {% if doc.doctype == "Quotation" and not doc.docstatus %}
- {{ _("Pending For Approval") }}
- {% else %}
-
-