26 lines
755 B
HTML
26 lines
755 B
HTML
<table>
|
|
<thead>
|
|
<tr>
|
|
{% for col in columns %}
|
|
<th>{{ col.label }}</th>
|
|
{% endfor %}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% if rows %}
|
|
{% for row in rows %}
|
|
<tr class="{{ row.class or '' }}">
|
|
{% for cell in row.cells %}
|
|
{% if cell.href %}
|
|
<td class="{{ cell.class or '' }}"><a href="{{ cell.href }}">{{ cell.text if cell.text is not none else '-' }}</a></td>
|
|
{% else %}
|
|
<td class="{{ cell.class or '' }}">{{ cell.text if cell.text is not none else '-' }}</td>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
{% else %}
|
|
<tr><td colspan="{{ columns|length }}">No data.</td></tr>
|
|
{% endif %}
|
|
</tbody>
|
|
</table>
|