Unit test for _table custom template, refs #521

This commit is contained in:
Simon Willison 2019-07-02 20:06:22 -07:00
commit 13e4f9a676
3 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,3 @@
{% for row in display_rows %}
<div class="custom-table-row">{{ row["f1"] }} - {{ row["f2"] }} - {{ row.display("f3") }}</div>
{% endfor %}