Skip to content

Commit

Permalink
add date format after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
srh-sloan committed Sep 16, 2024
1 parent 445df5d commit 33d6543
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/blueprints/fund_builder/templates/fund_config.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ <h2 class="govuk-heading-m">Application Rounds</h2>
"text": "Opens Date"
},
"value": {
"text": round.opens
"text": round.opens.strftime('%d-%m-%Y %H:%M')
},

},
Expand All @@ -98,7 +98,7 @@ <h2 class="govuk-heading-m">Application Rounds</h2>
"text": "Deadline Date"
},
"value": {
"text": round.deadline
"text": round.deadline.strftime('%d-%m-%Y %H:%M')
},

},
Expand All @@ -107,7 +107,7 @@ <h2 class="govuk-heading-m">Application Rounds</h2>
"text": "Assessment Start Date"
},
"value": {
"text": round.assessment_start
"text": round.assessment_start.strftime('%d-%m-%Y %H:%M')
},

},
Expand All @@ -116,7 +116,7 @@ <h2 class="govuk-heading-m">Application Rounds</h2>
"text": "Assessment Deadline Date"
},
"value": {
"text": round.assessment_deadline
"text": round.assessment_deadline.strftime('%d-%m-%Y %H:%M')
},

},
Expand All @@ -125,7 +125,7 @@ <h2 class="govuk-heading-m">Application Rounds</h2>
"text": "Reminder Date"
},
"value": {
"text": round.reminder_date
"text": round.reminder_date.strftime('%d-%m-%Y %H:%M')
},
},
{
Expand Down

0 comments on commit 33d6543

Please sign in to comment.