> {% autopaginate rows 5%}
>
> {% for row in rows %}
> <TR>
> {% for value in row %}
> val=this.rowindex
> {% if (val == 0) %}
> <TD><TH><b>{{ value }}</b></TH></TD>
>
> {% else %}
>
> <TD>>{{ value }}</TD>
> {% endif %}
>
> {% endfor %}
>
> </TR>
> {% endfor %}
>
> {% paginate %}
When i try executing this script i get this error
'if' statement improperly formatted
Can anyone help me..
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---