equal
deleted
inserted
replaced
63 </div> |
63 </div> |
64 <div> |
64 <div> |
65 <label for="avatar" th:text="#{renkanAdmin.form.avatar}">Avatar: </label> |
65 <label for="avatar" th:text="#{renkanAdmin.form.avatar}">Avatar: </label> |
66 <input type="text" th:field="*{avatar}" /> |
66 <input type="text" th:field="*{avatar}" /> |
67 </div> |
67 </div> |
|
68 <!-- todo: only user managing the group can see that --> |
|
69 <div> |
|
70 <label for="users" th:text="#{renkanAdmin.form.users}">Groups: </label> |
|
71 <select th:field="*{users}" multiple="multiple"> |
|
72 <option th:each="user: ${allUsers}" th:value="${user.id}" th:text="${user.title}">USER</option> |
|
73 </select> |
|
74 </div> |
68 <div class="submit"> |
75 <div class="submit"> |
69 <button type="submit" name="save" th:text="#{renkanAdmin.form.user.submit}">Save</button> |
76 <button type="submit" name="save" th:text="#{renkanAdmin.form.user.submit}">Save</button> |
70 <!--button type="button" name="cancel" th:text="#{renkanAdmin.form.user.cancel}" th:onclick="location">Cancel</button--> |
77 <!--button type="button" name="cancel" th:text="#{renkanAdmin.form.user.cancel}" th:onclick="location">Cancel</button--> |
71 </div> |
78 </div> |
72 |
79 |