How to Change Title Delivery Note

Hello Everyone,

Can anyone help me and guide that how can I change title “Delivery Note” to “Job Completion Certificate”.

Thanks

Read the Guide: Guides | Manager.

@Tut,

Thank you very much the above-mentioned link was very supported to me and I have change the title at my own. Furthermore, can you please share that how can I change the narration in bottom line like:

  1. Amount credited
  2. Balance due

Snapshot is attached for your reference please.

Regards,

You would need to make comparable changes in the section of code that loops through the table.totals array.

can you please share the html code?

what can I change in following code to edit above requested fields:

{% for total in table.totals %}

{{ total.label }}
{{ total.text }}

{% endfor %}

    {% for field in custom_fields %}
    <tr>
        <td colspan="99">
            <div>{{ field.text | newline_to_br }}</div>
        </td>
    </tr>
    {% endfor %}

    {% if emphasis.text != null and emphasis.positive %}
    <tr><td colspan="99"><div style="text-align: center; margin-top: 40px"><span style="color: #006400; border-width: 5px; border-color: #006400; padding: 10px; font-size: 20px">{{ emphasis.text | upcase }}</span></div></td></tr>
    {% endif %}

   {% if emphasis.text != null and emphasis.negative %}
    <tr><td colspan="99"><div style="text-align: center; margin-top: 40px"><span style="color: #FF0000; border-width: 5px; border-color: #FF0000; padding: 10px; font-size: 20px">{{ emphasis.text | upcase }}</span></div></td></tr>
    {% endif %}
        
</tbody>

I’m sorry, I’m not a programmer. If you don’t have the skills personally, you will need to hire someone locally to hep you.

Thanks for your response @Tut