We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tablerow
row
The tablerowloop object available within the tablerow tag should expose a row property, being the current row number of the table.
tablerowloop
The documentation for tablerowloop needs updating too.
Example template:
{% tablerow i in (1..5) cols:2 %} {{ i }} {{ tablerowloop.row }} {% endtablerow %}
Expected output:
<tr class="row1">\n <td class="col1">1 1</td> <td class="col2">2 1</td> </tr>\n <tr class="row2"> <td class="col1">3 2</td> <td class="col2">4 2</td> </tr>\n <tr class="row3"> <td class="col1">5 3</td> </tr>\n
The text was updated successfully, but these errors were encountered:
Fix tablerowloop.row. See #77
tablerowloop.row
25d1608
No branches or pull requests
The
tablerowloop
object available within thetablerow
tag should expose arow
property, being the current row number of the table.The documentation for
tablerowloop
needs updating too.Example template:
Expected output:
The text was updated successfully, but these errors were encountered: