File size: 370 Bytes
a746d34
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends 'base.html' %}

{% block content %}
    <h1>Specification</h1>
    <table>
        <tr>
            <th>Key</th>
            <th>Value</th>
        </tr>
        {% for spec in specification %}
            <tr>
                <td>{{ spec.key }}</td>
                <td>{{ spec.value }}</td>
            </tr>
        {% endfor %}
    </table>
{% endblock %}