commit | f839f3e93f841248c06273a588f665bbf66382de | [log] [tgz] |
---|---|---|
author | Anna Arhipova <harhipova@mirantis.com> | Thu Oct 05 21:23:08 2023 +0200 |
committer | Hanna Arhipova <harhipova@mirantis.com> | Fri Oct 06 10:01:28 2023 +0000 |
tree | f818f6f01803d071d1f4dedb143487e31335b714 | |
parent | 0512c4336fd4a95ef59f7f8c786991953bff732a [diff] [blame] |
Update timestamp on every page reload PRODX-35932 Change-Id: I562124407f8fce9aeb31ca1cebdcfbf5896e84c6
diff --git a/testrail_bot/control/views.py b/testrail_bot/control/views.py index 9077a7c..7c94a25 100644 --- a/testrail_bot/control/views.py +++ b/testrail_bot/control/views.py
@@ -29,6 +29,7 @@ else: form = forms.TestRunForm(instance=run) + form.fields["timestamp"].initial = datetime.date.today() return render(request, "control/update_run.html", {"form": form, "run_id": run_id})