Need help with custom print format

Hi ,

I am able to print the value from another doc in a child table with the below code ,

{{ frappe.db.get_value('htpr', doc.ht, 'ht') }} 

now how do I make the second row in the child table to print something .

Thanks,

You can loop through the (child table) list and print items?

{% for item in seq -%}
    {{ item }}
{%- endfor %}

more : http://jinja.pocoo.org/docs/dev/templates/

2 Likes

Yup , Thanks for the info @revant_one . I will try