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