1{% extends "admin/base.html" %}
2{% block title %}Blob{% endblock %}
3
4{% block content %}
5 <h1>Blob</h1>
6 <table class="table table-striped">
7 <tbody>
8 {% for slug, attrib in blob %}
9 <tr>
10 <th>{{ slug }}</th>
11 <td>{{ attrib }}</td>
12 </tr>
13 {% endfor %}
14 </tbody>
15 </table>
16{% endblock %}