On Aug 15, 11:45 pm, Adam Zedan <[email protected]> wrote:
> Hi i am getting a problem with my for loop which i used in my template.Could
> you kindly let me know what is going wrong in here.
> The for loop is in a jquery function
I think this:
> {% for x in range(len(content)) %}
.. is not allowed --no python in django templates.
Do you have a sample (2 or 3 elements) showing how content is defined?
If content came from a query, this should work:
> {% for x in content %}
> data[i] =
> {
> roll_no: {{x.roll_no}},
> cell_no: {{x.cell_no}},
> nationality:{{x.nationality}},
> e_mail:{{x.e_mail}}
> };
> {% endfor %}
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.