Merge pull request #18631 from netchampfaris/fix-item-template-description

fix(Item Template): Fallback description string
This commit is contained in:
Deepesh Garg
2019-08-11 11:20:46 +05:30
committed by GitHub

View File

@@ -9,9 +9,9 @@
</p>
<!-- description -->
<div itemprop="description">
{% if frappe.utils.strip_html(doc.web_long_description) %}
{% if frappe.utils.strip_html(doc.web_long_description or '') %}
{{ doc.web_long_description | safe }}
{% elif frappe.utils.strip_html(doc.description) %}
{% elif frappe.utils.strip_html(doc.description or '') %}
{{ doc.description | safe }}
{% else %}
{{ _("No description given") }}