Do not show UUID in listing
This commit is contained in:
parent
af2ce1e9b1
commit
88685bf54b
|
@ -13,7 +13,6 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>UUID</th>
|
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th>Type</th>
|
<th>Type</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -21,8 +20,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for item_class in item_classes -%}
|
{% for item_class in item_classes -%}
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="/item-class/{{ item_class.id }}">{{ item_class.id }}</a></td>
|
<td><a href="/item-class/{{ item_class.id }}">{{ item_class.name }}</a></td>
|
||||||
<td>{{ item_class.name }}</td>
|
|
||||||
<td>{{ item_class.type }}</td>
|
<td>{{ item_class.type }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor -%}
|
{% endfor -%}
|
||||||
|
|
|
@ -13,7 +13,6 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>UUID</th>
|
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th>Class</th>
|
<th>Class</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -22,8 +21,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
{% for item in items -%}
|
{% for item in items -%}
|
||||||
{% let class = item_classes.get(item.class).unwrap() %}
|
{% let class = item_classes.get(item.class).unwrap() %}
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="/item/{{ item.id }}">{{ item.id }}</a></td>
|
<td><a href="/item/{{ item.id }}">{{ item.name }}</a></td>
|
||||||
<td>{{ item.name }}</td>
|
|
||||||
<td><a href="/item-class/{{ class.id }}">{{ class.name }}</a></td>
|
<td><a href="/item-class/{{ class.id }}">{{ class.name }}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor -%}
|
{% endfor -%}
|
||||||
|
|
Loading…
Reference in a new issue