I want to know how yu can incorporate it into the html. What I have right now is the following.
{% for u in list %}
{{ u }} <br>
{% endfor %}
And what I want is something along these lines-
{% for u in list %}
{{ u }} <br>
{{ u.value }} <br>
{% endfor %}
Thanks guys!
EDIT: A sample would look like the following-
Apple
10
---
Banana
4
---
Orange
3
---
Pear
1
---