32 lines
616 B
Django/Jinja
32 lines
616 B
Django/Jinja
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{ title }}</title>
|
|
<meta name="description" content="{{ description }}">
|
|
</head>
|
|
<body>
|
|
<h1>{{ heading }}</h1>
|
|
|
|
<table id="{{ table_id }}">
|
|
<thead>
|
|
<tr>
|
|
{% for col in columns %}
|
|
<th>{{ col }}</th>
|
|
{% endfor %}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in rows %}
|
|
<tr>
|
|
{% for cell in row %}
|
|
<td>{{ cell }}</td>
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
<a href="{{ link_url }}">{{ link_text }}</a>
|
|
</body>
|
|
</html>
|