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') }, }, {