31 lines
543 B
HTML
31 lines
543 B
HTML
|
{#
|
|||
|
SPDX-FileCopyrightText: 2024 Simon Bruder <simon@sbruder.de>
|
|||
|
|
|||
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|||
|
#}
|
|||
|
|
|||
|
{% extends "base.html" %}
|
|||
|
{% block title %}{% block page_title %}{{ item.name }}{% endblock %} – Item Details – {{ branding }}{% endblock %}
|
|||
|
{% block main %}
|
|||
|
<table class="table">
|
|||
|
<tbody>
|
|||
|
<tr>
|
|||
|
<th>
|
|||
|
UUID
|
|||
|
</th>
|
|||
|
<td>
|
|||
|
{{ item.id }}
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<th>
|
|||
|
Name
|
|||
|
</th>
|
|||
|
<td>
|
|||
|
{{ item.name }}
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
</tbody>
|
|||
|
</table>
|
|||
|
{% endblock %}
|