From 33d6543242c4b2c1b7816ceb5e664b0ca3d34c7b Mon Sep 17 00:00:00 2001 From: Sarah Sloan Date: Mon, 16 Sep 2024 13:16:16 +0000 Subject: [PATCH] add date format after merge --- app/blueprints/fund_builder/templates/fund_config.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/blueprints/fund_builder/templates/fund_config.html b/app/blueprints/fund_builder/templates/fund_config.html index 123646c4..11ff888a 100644 --- a/app/blueprints/fund_builder/templates/fund_config.html +++ b/app/blueprints/fund_builder/templates/fund_config.html @@ -89,7 +89,7 @@

Application Rounds

"text": "Opens Date" }, "value": { - "text": round.opens + "text": round.opens.strftime('%d-%m-%Y %H:%M') }, }, @@ -98,7 +98,7 @@

Application Rounds

"text": "Deadline Date" }, "value": { - "text": round.deadline + "text": round.deadline.strftime('%d-%m-%Y %H:%M') }, }, @@ -107,7 +107,7 @@

Application Rounds

"text": "Assessment Start Date" }, "value": { - "text": round.assessment_start + "text": round.assessment_start.strftime('%d-%m-%Y %H:%M') }, }, @@ -116,7 +116,7 @@

Application Rounds

"text": "Assessment Deadline Date" }, "value": { - "text": round.assessment_deadline + "text": round.assessment_deadline.strftime('%d-%m-%Y %H:%M') }, }, @@ -125,7 +125,7 @@

Application Rounds

"text": "Reminder Date" }, "value": { - "text": round.reminder_date + "text": round.reminder_date.strftime('%d-%m-%Y %H:%M') }, }, {