I need to extend the html template of Request For Quotation. Just need to add one attach field in this template
and this is the standard html code of
{% extends “templates/web.html” %}
{% block header %}
{{ doc.name }}
{% endblock %}{% block script %}
{% endblock %}
{% block breadcrumbs %}
{% include “templates/includes/breadcrumbs.html” %}
{% endblock %}
{% block header_actions %}
{% if doc.items %}
{{ _(“Make Quotation”) }}
{% endif %}
{% endblock %}
{% block page_content %}
{{ doc.supplier }}
{{ doc.get_formatted("transaction_date") }}
{{ _("Items") }}
{{ _("Qty") }}
{{ _("Rate") }}
{{ _("Amount") }}
{% if doc.items %}
{% include "templates/includes/rfq/rfq_items.html" %}
{% endif %}
{{ _("Grand Total") }}
{{doc.currency_symbol}} 0.0
{{ _("Notes: ") }}
{{ _("Quotations: ") }}
{% if doc.rfq_links %}
{% for d in doc.rfq_links %}
Link
{% endfor %}
{% endif %}
{{d.name}}
{{d.status}}
{{d.transaction_date}}
can you please tell me how can i extend this html page functionality