I am writing to request a guidance on the system’s date display format. Currently, the date is displayed in lowercase letters (e.g., “july 3, 2024”) on student’sreport. Is there a way to have the date been displayed in capital letters (e.g., “JULY 3, 2024”)
Hi @Fatombi, It’s odd to hear that the date display is lower case, I wonder if this is a locale setting on the server. Yes, you can make them uppercase by duplicating the report template that you wish to change and editing it. In the twig template syntax, and variable can be made uppercase with the |upper
function. For example, a date like {{ reportingCycle.dateEnd|date("F jS, Y") }}
could become {{ reportingCycle.dateEnd|date("F jS, Y")|upper }}
. Hope this helps!
1 Like