Seems like it should be simple enough but it’s driving me up the wall. I’ve looked at the python date formatting strings and it still doesn’t make too much sense.
Here’s what I’m trying to do: <Full day>, <Day of month><Ordinal> <Month>
Where <Ordinal> is st, nd, rd, th, etc depending on the day.
Update 2: Looks like OP found this useful after all 🙂
Update: Never mind. The OP was looking for Django date formatting, not Python.
AFAIK there is no built in format specifier for the ordinal. The others are easy:
I found this solution on the web: