Skip to content

Commit

Permalink
Show Personae Mboxes (Closes #50)
Browse files Browse the repository at this point in the history
  • Loading branch information
Galaxy102 committed Feb 13, 2022
1 parent cdc40e2 commit bd099d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>de.tudresden.inf.verdatas</groupId>
<artifactId>xapitools</artifactId>
<version>1.0.1-SNAPSHOT</version>
<version>1.1.0-SNAPSHOT</version>
<name>xapitools</name>
<description>Data Generation and Evaluation</description>
<properties>
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/templates/bootstrap/datasim/persona.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
<div class="mb-3 form-control">
<label for="personaInput">Select Personae for Simulation</label>
<select class="form-select mt-3 mb-3" multiple id="personaInput" name="persona_id" required>
<option th:each="persona: ${personas}" th:value="${persona.getKey().getId()}" th:text="${persona.getKey().getName()}"
<option th:each="persona: ${personas}" th:value="${persona.getKey().getId()}"
th:text="${persona.getKey().getName()} + ' <' + ${persona.getKey().getMbox()} + '>'"
th:selected="${persona.getValue()}">
</option>
</select>
Expand Down

0 comments on commit bd099d2

Please sign in to comment.