33 lines
1.9 KiB
HTML
33 lines
1.9 KiB
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<title th:text="#{financer.transaction-new.title}"/>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" th:href="@{/css/main.css}">
|
|
</head>
|
|
<body>
|
|
<h1 th:text="#{financer.heading.transaction-new}" />
|
|
<span class="errorMessage" th:if="${errorMessage != null}" th:text="#{'financer.error-message.' + ${errorMessage}}"/>
|
|
<form id="new-transaction-form" action="#" th:action="@{/saveTransaction}" th:object="${form}"
|
|
method="post">
|
|
<label for="selectFromAccount" th:text="#{financer.transaction-new.label.from-account}"/>
|
|
<select id="selectFromAccount" th:field="*{fromAccountKey}">
|
|
<option th:each="acc : ${accounts}" th:value="${acc.key}"
|
|
th:text="#{'financer.transaction-new.account-type.' + ${acc.type}(${acc.key},${#numbers.formatDecimal(acc.currentBalance/100D, 1, 'DEFAULT', 2, 'DEFAULT')})}"/>
|
|
</select>
|
|
<label for="selectToAccount" th:text="#{financer.transaction-new.label.to-account}"/>
|
|
<select id="selectToAccount" th:field="*{toAccountKey}">
|
|
<option th:each="acc : ${accounts}" th:value="${acc.key}"
|
|
th:text="#{'financer.transaction-new.account-type.' + ${acc.type}(${acc.key},${#numbers.formatDecimal(acc.currentBalance/100D, 1, 'DEFAULT', 2, 'DEFAULT')})}"/>
|
|
</select>
|
|
<label for="inputAmount" th:text="#{financer.transaction-new.label.amount}"/>
|
|
<input type="text" id="inputAmount" th:field="*{amount}"/>
|
|
<label for="inputDate" th:text="#{financer.transaction-new.label.date}"/>
|
|
<input type="date" id="inputDate" th:field="*{date}"/>
|
|
<label for="inputDescription" th:text="#{financer.transaction-new.label.description}"/>
|
|
<input type="text" id="inputDescription" th:field="*{description}"/>
|
|
<input type="submit" th:value="#{financer.transaction-new.submit}"/>
|
|
</form>
|
|
</body>
|
|
</html> |