fix: Translate Strings
This commit is contained in:
parent
887fe2bb8a
commit
d328b65122
1 changed files with 2 additions and 2 deletions
|
|
@ -192,9 +192,9 @@ data-fieldname="{{ df.fieldname }}" data-fieldtype="{{ df.fieldtype }}"
|
|||
{% else %}
|
||||
<div class="print-heading">
|
||||
<h2>
|
||||
<div>{{ doc.select_print_heading or (doc.print_heading if doc.print_heading != None
|
||||
<div>{{ _(doc.select_print_heading) or (_(doc.print_heading) if doc.print_heading != None
|
||||
else _(doc.doctype)) }}</div>
|
||||
<small class="sub-heading">{{ doc.sub_heading if doc.sub_heading != None
|
||||
<small class="sub-heading">{{ _(doc.sub_heading) if doc.sub_heading != None
|
||||
else doc.name }}</small>
|
||||
</h2>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue