39c0298a003de71305027d987408d16b2908b40f
[unfold.git] / plugins / templates / simplelist.html
1 <table class='simplelist {%if with_datatables %}with-datatables{% endif %}'>
2 {% if header %}
3 <thead><tr><th>{{ header }}</th></tr></thead>
4 {% endif %}
5 <tbody>
6 {% for item in list %}
7 <tr><td>{{ item|safe }}</td></tr>
8 {% endfor %}
9 </tbody>
10 </table>