aboutsummaryrefslogtreecommitdiff
path: root/templates/payment/table/search.html
diff options
context:
space:
mode:
authorJoris2021-10-10 21:21:06 +0200
committerJoris2021-10-10 21:21:34 +0200
commit99466c6ceb848cf8147645f25deea89804b7b279 (patch)
treeba184c40a8d30bfc76dcb2882420822c5518e199 /templates/payment/table/search.html
parent6e695bf7a0253b4f6d1db78fa4310616d8a1357f (diff)
downloadbudget-99466c6ceb848cf8147645f25deea89804b7b279.tar.gz
budget-99466c6ceb848cf8147645f25deea89804b7b279.tar.bz2
budget-99466c6ceb848cf8147645f25deea89804b7b279.zip
Filter payments by start and end date
Diffstat (limited to 'templates/payment/table/search.html')
-rw-r--r--templates/payment/table/search.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/payment/table/search.html b/templates/payment/table/search.html
index 8805cbb..e46b582 100644
--- a/templates/payment/table/search.html
+++ b/templates/payment/table/search.html
@@ -63,6 +63,26 @@
</select>
</label>
+ <label class="g-Form__Label">
+ Date de début
+ <input
+ type="date"
+ name="start_date"
+ class="g-Form__Input"
+ value="{{ query.start_date }}"
+ />
+ </label>
+
+ <label class="g-Form__Label">
+ Date de fin
+ <input
+ type="date"
+ name="end_date"
+ class="g-Form__Input"
+ value="{{ query.end_date }}"
+ />
+ </label>
+
<input type="submit" class="g-Button__Validate" value="Rechercher">
</form>