diff options
author | Joris | 2021-10-10 21:21:06 +0200 |
---|---|---|
committer | Joris | 2021-10-10 21:21:34 +0200 |
commit | 99466c6ceb848cf8147645f25deea89804b7b279 (patch) | |
tree | ba184c40a8d30bfc76dcb2882420822c5518e199 /templates/payment/table/search.html | |
parent | 6e695bf7a0253b4f6d1db78fa4310616d8a1357f (diff) |
Filter payments by start and end date
Diffstat (limited to 'templates/payment/table/search.html')
-rw-r--r-- | templates/payment/table/search.html | 20 |
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> |