Skip to content

Commit

Permalink
ui-gui: archive-mgr: added all hidden fields to product archive GUI
Browse files Browse the repository at this point in the history
  • Loading branch information
DenChaykovskiy committed Apr 10, 2024
1 parent 3540703 commit c34cc69
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 21 deletions.
8 changes: 5 additions & 3 deletions ui/gui/src/main/resources/messages_de.properties
Original file line number Diff line number Diff line change
Expand Up @@ -98,16 +98,18 @@ product-show = Produkte anzeigen
product-update = Produkt updaten
productarchive-show=Produktarchive anzeigen
productarchive=Produktarchiv
productarchive-name=Produktarchiv-Name
productarchive-name=Name
productarchive-version=Version
productarchive-clientId=Klient Id
productarchive-clientSecret=Kundengehemnis
productarchive-code=Code
productarchive-context=Produktarchiv-Kontext
productarchive-archiveType=Produktarchiv-Typ
productarchive-context=Kontext
productarchive-archiveType=Archiv-Typ
productarchive-baseUri=Basis-URI
productarchive-tokenRequired=Token erforderlich
productarchive-tokenUri=Token-URI
productarchive-username=Benutzername
productarchive-sendAuthInBody=Auth Im Body senden
productiontype = Produktionstyp
release = Freigeben
remove = Entfernen
Expand Down
8 changes: 5 additions & 3 deletions ui/gui/src/main/resources/messages_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -98,16 +98,18 @@ product-show = Show Products
product-update = Update Product
productarchive-show=Show Product Archives
productarchive=Product Archive
productarchive-name=Product Archive name
productarchive-name=Name
productarchive-version=Version
productarchive-clientId=Client Id
productarchive-clientSecret=Client Secret
productarchive-code=Code
productarchive-context=Product Archive context
productarchive-archiveType=Product Archive Type
productarchive-context=Context
productarchive-archiveType=Archive Type
productarchive-baseUri=Base URI
productarchive-tokenRequired=Token required
productarchive-tokenUri=Token URI
productarchive-username=Username
productarchive-sendAuthInBody=Send Auth in Body
productiontype = Production Type
release = Release
remove = Remove
Expand Down
30 changes: 15 additions & 15 deletions ui/gui/src/main/resources/templates/productarchive-show.html
Original file line number Diff line number Diff line change
Expand Up @@ -176,37 +176,37 @@ <h5>
<!-- Table header (parts that are hidden by default) -->
<tr class="th-row">
<th class="tr-rowspan"><span>&nbsp;</span></th>
<th><span th:text="#{productarchive-version}">version</span></th>
<th><span th:text="#{productarchive-clientId}">clientId</span></th>
<th><span th:text="#{productarchive-clientSecret}">clientSecret</span></th>
<th><span th:text="#{productarchive-code}">code</span></th>
<th><span th:text="#{productarchive-context}">context</span></th>
<th><span th:text="#{productarchive-tokenRequired}">tokenRequired</span></th>
<th><span th:text="#{productarchive-tokenUri}">tokenUri</span></th>
<th><span th:text="#{username}">username</span></th>
</tr>

<!-- Hidden content -->
<tr class="proseo-row-divider">
<td class="tr-rowspan">&nbsp;</td>
<td class="first-row" th:text="${productarchive.version}"></td>
<td class="first-row" th:text="${productarchive.clientId}"></td>
<td class="first-row" th:text="${productarchive.clientSecret}"></td>
<td class="first-row" th:text="${productarchive.code}"></td>
<td class="first-row" th:text="${productarchive.context}"></td>
<td class="first-row" th:text="${productarchive.tokenRequired}"></td>
<td class="first-row" th:text="${productarchive.tokenUri}"></td>
<td class="first-row" th:text="${productarchive.username}"></td>
</tr>

<!-- More hidden table headers -->
<tr class="th-row">
<th class="tr-rowspan"><span>&nbsp;</span></th>
<th><span th:text="#{productarchive-context}">context</span></th>
<th><span th:text="#{password}">context</span></th>
<th><span th:text="#{productarchive-tokenUri}">context</span></th>
<th><span th:text="#{username}">username</span></th>
<th><span th:text="#{password}">password</span></th>
<th><span th:text="#{productarchive-clientId}">clientId</span></th>
<th><span th:text="#{productarchive-clientSecret}">clientSecret</span></th>
<th><span th:text="#{productarchive-sendAuthInBody}">sendAuthInBody</span></th>
</tr>

<!-- More hidden table content -->
<tr class="proseo-row-divider">
<td class="tr-rowspan">&nbsp;</td>
<td class="first-row" th:text="${productarchive.context}"></td>
<td class="first-row" th:text="${productarchive.password}"></td>
<td class="first-row" th:text="${productarchive.tokenUri}"></td>
<td class="first-row" th:text="${productarchive.username}"></td>
<td class="first-row" th:text="${productarchive.clientId}"></td>
<td class="first-row" th:text="${productarchive.clientSecret}"></td>
<td class="first-row" th:text="${productarchive.sendAuthInBody}"></td>
</tr>

</tbody>
Expand Down

0 comments on commit c34cc69

Please sign in to comment.