Release 1.0.0

This commit is contained in:
2026-02-25 10:24:12 +01:00
parent 44fb66adfc
commit c033456bf8
35 changed files with 4891 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<title>Earliest date</title>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
padding: 5px;
}
input {
width: 100px;
}
</style>
</head>
<body>
<h2>Earliest Process date</h2>
<br/>
No transactions from before this date wil be checked for invoices in the "create-invoices" process. <br/> <br/>
<form method="POST">
<input type="text"
name="earliestdate"
value="{{ earliestdate }}">
<br/> <br/>
<button type="submit">Save Changes</button>
</form>
<p><a href="/invoice">Back</a></p>
</body>
</html>