Skip to content

Commit

Permalink
ui-gui: archive-mgr: available product classes to GUI added
Browse files Browse the repository at this point in the history
  • Loading branch information
DenChaykovskiy committed Apr 12, 2024
1 parent d5a354b commit 2d98759
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion ui/gui/src/main/resources/templates/productarchive-show.html
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,24 @@ <h5>
</td>

<td class="first-row" th:text="${productarchive?.sendAuthInBody}"></td>
</tr>
</tr>

<!-- More hidden table headers -->
<tr class="th-row">
<th class="tr-rowspan"><span>&nbsp;</span></th>
<th><span th:text="#{productarchive-available-product-classes}">availableProductClasses</span></th>
</tr>

<!-- More hidden table content -->
<tr class="proseo-row-divider">
<td class="tr-rowspan">&nbsp;</td>

<td><a th:each="avail : ${productarchive?.availableProductClasses}"
class="proseo-list-item"
th:href="'/productclass-show?productClass=' + ${avail}"
th:text="' ' + ${avail}"></a>
</td>
</tr>

</tbody>

Expand Down

0 comments on commit 2d98759

Please sign in to comment.