From 6bdc25cf462b8f79fa576e9f291efd075d28f60b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2=20Cant=C3=B9?= Date: Wed, 15 Jan 2025 09:34:30 +0100 Subject: [PATCH] add date input type in widget --- src/genlab_bestilling/forms.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/genlab_bestilling/forms.py b/src/genlab_bestilling/forms.py index 373f215..9249c71 100644 --- a/src/genlab_bestilling/forms.py +++ b/src/genlab_bestilling/forms.py @@ -80,6 +80,8 @@ class Meta: search_lookup="name_icontains", filter_by={"species": "species__id"}, ), + "expected_analysis_delivery_date": DateInput(), + "expected_samples_delivery_date": DateInput(), }