15 lines
324 B
HTML
15 lines
324 B
HTML
|
{% extends 'mixins/partials/generic-detail.html' %}
|
||
|
|
||
|
{% block tbody %}
|
||
|
{% for item in object %}
|
||
|
{% if item.data %}
|
||
|
{% for row in item.data %}
|
||
|
<tr>
|
||
|
<th>{{ row.Variable_name }}</th>
|
||
|
<td>{{ row.Value }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|