Skip to content
Snippets Groups Projects
Commit 797c9ad4 authored by BEAUVAIS ANTOINE's avatar BEAUVAIS ANTOINE
Browse files

Updated Registry interface.

parent db92910b
Branches
2 merge requests!41Develop,!40Feature/post registry
......@@ -26,6 +26,18 @@
<td th:text="${entry.credit}"></td>
<td th:text="${entry.remarks}"></td>
</tr>
<tr>
<form th:action="@{/registry}" th:object="${RegistryInfo}" method="post">
<td><input type="datetime-local" th:field="*{date}" /></td>
<td><input type="number" th:field="*{transactionType}" /></td>
<td><input type="number" th:field="*{accountId}" /></td>
<td><input type="number" th:field="*{debit}" /></td>
<td><input type="number" th:field="*{credit}" /></td>
<td><input type="text" th:field="*{remarks}" /></td>
<td><input type="submit" /></td>
</form>
</tr>
</table>
</div>
</article>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment