31 lines
737 B
HTML
31 lines
737 B
HTML
<!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>
|