mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-02-04 05:11:12 +00:00
- Added WebConfiguration class to change language using url param - Added text from messages to html files wherever required - Added String to all other languages Closes #1854 Signed-off-by: anizmo <potdar.anuj@gmail.com>
30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<html xmlns:th="https://www.thymeleaf.org"
|
|
th:replace="~{fragments/layout :: layout (~{::body},'owners')}">
|
|
|
|
<body>
|
|
|
|
<h2 th:text="#{owner}">Owner</h2>
|
|
<form th:object="${owner}" class="form-horizontal" id="add-owner-form" method="post">
|
|
<div class="form-group has-feedback">
|
|
<input
|
|
th:replace="~{fragments/inputField :: input (#{firstName}, 'firstName', 'text')}" />
|
|
<input
|
|
th:replace="~{fragments/inputField :: input (#{lastName}, 'lastName', 'text')}" />
|
|
<input
|
|
th:replace="~{fragments/inputField :: input (#{address}, 'address', 'text')}" />
|
|
<input
|
|
th:replace="~{fragments/inputField :: input (#{city}, 'city', 'text')}" />
|
|
<input
|
|
th:replace="~{fragments/inputField :: input (#{telephone}, 'telephone', 'text')}" />
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-2 col-sm-10">
|
|
<button
|
|
th:with="text=${owner['new']} ? #{addOwner} : #{updateOwner}"
|
|
class="btn btn-primary" type="submit" th:text="${text}">Add
|
|
Owner</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html>
|