equal
deleted
inserted
replaced
128 </div> |
128 </div> |
129 <div> |
129 <div> |
130 <label for="locked" th:text="#{renkanAdmin.form.locked}">Locked: </label> |
130 <label for="locked" th:text="#{renkanAdmin.form.locked}">Locked: </label> |
131 <input type="checkbox" th:field="*{locked}" /> |
131 <input type="checkbox" th:field="*{locked}" /> |
132 </div> |
132 </div> |
|
133 <div> |
|
134 <label for="userAuthorities" th:text="#{renkanAdmin.form.roles}">Roles: </label> |
|
135 <select th:field="*{userAuthorities}" multiple="multiple"> |
|
136 <option th:each="role: ${T(org.iri_research.renkan.Constants).USER_ROLES_SELECT}" th:value="${role}" th:text="#{${'renkan.user.roles.'+role}}">USER_ROLE</option> |
|
137 </select> |
|
138 </div> |
133 <div class="submit"> |
139 <div class="submit"> |
134 <button type="submit" name="save" th:text="#{renkanAdmin.form.user.submit}">Save</button> |
140 <button type="submit" name="save" th:text="#{renkanAdmin.form.user.submit}">Save</button> |
135 <!--button type="button" name="cancel" th:text="#{renkanAdmin.form.user.cancel}" th:onclick="location">Cancel</button--> |
141 <!--button type="button" name="cancel" th:text="#{renkanAdmin.form.user.cancel}" th:onclick="location">Cancel</button--> |
136 </div> |
142 </div> |
137 |
143 |