#17 Period overview: add Actions
This commit is contained in:
@@ -25,6 +25,7 @@
|
||||
<th th:text="#{financer.period-overview.table-header.total}"/>
|
||||
<th th:text="#{financer.period-overview.table-header.assets}"/>
|
||||
<th th:text="#{financer.period-overview.table-header.transactions}"/>
|
||||
<th th:text="#{financer.period-overview.table-header.actions}"/>
|
||||
</tr>
|
||||
<tr th:each="periodOverview : ${periodOverviews}">
|
||||
<td th:text="${periodOverview.periodId}"/>
|
||||
@@ -44,9 +45,14 @@
|
||||
<span th:if="${periodOverview.assetTrend == T(de.financer.dto.AssetTrend).EQUAL}" class="icon color-neutral"></span>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
<td th:if="${periodOverview.assetsSum == null}" />
|
||||
<td th:text="${periodOverview.transactionCount}"/>
|
||||
<td nowrap>
|
||||
<div id="period-overview-actions-container">
|
||||
<a th:href="@{/showTransactions(periodId=${periodOverview.periodId})}"
|
||||
th:text="#{financer.period-overview.table.actions.showTransactions}" />
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div th:replace="includes/footer :: footer"/>
|
||||
|
||||
Reference in New Issue
Block a user