Add chart report for expenses grouped by account
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html xmlns:th="http://www.thymeleaf.org">
|
||||
<head>
|
||||
<title th:text="#{financer.chart-config-account-expenses-for-period.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.chart-config-account-expenses-for-period}"/>
|
||||
<span class="errorMessage" th:if="${errorMessage != null}" th:text="#{'financer.error-message.' + ${errorMessage}}"/>
|
||||
<a th:href="@{/accountOverview}" th:text="#{financer.cancel-back-to-overview}"/>
|
||||
<form id="chart-config-account-expenses-for-period-form" action="#"
|
||||
th:action="@{/getAccountExpensesForPeriod}" th:object="${form}" method="post">
|
||||
<label for="fromDate" th:text="#{financer.chart-config-account-expenses-for-period.label.from-date}"/>
|
||||
<input type="date" id="fromDate" th:field="*{fromDate}"/>
|
||||
<label for="toDate" th:text="#{financer.chart-config-account-expenses-for-period.label.to-date}"/>
|
||||
<input type="date" id="toDate" th:field="*{toDate}"/>
|
||||
<input type="submit" th:value="#{financer.chart-config-account-expenses-for-period.submit}"/>
|
||||
</form>
|
||||
<div th:replace="includes/footer :: footer" />
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user