diff --git a/frappe/templates/print_formats/standard_macros.html b/frappe/templates/print_formats/standard_macros.html index a7ae56b3c2..86c85d0732 100644 --- a/frappe/templates/print_formats/standard_macros.html +++ b/frappe/templates/print_formats/standard_macros.html @@ -14,7 +14,7 @@ {%- elif df.fieldtype=="Geolocation" -%} {{ render_geolocation(df, doc) }} {%- elif df.fieldtype=="Signature" -%} - {{ render_signature(df, doc) }} + {{ render_field_with_label(df, doc, no_of_cols) }} {%- elif df.fieldtype=="Currency" -%} {%- if doc.print_templates and doc.print_templates.get(df.fieldname) -%} @@ -129,10 +129,6 @@ data-fieldname="{{ df.fieldname }}" data-fieldtype="{{ df.fieldtype }}" {{ print_value(df, doc) }} {% endmacro %} -{%- macro render_signature(df, doc) -%} - {{ print_value(df, doc) }} -{% endmacro %} - {%- macro render_geolocation(df, doc) -%} {{ "" }} {%- endmacro -%}