Django's date/time formats have a code for displaying the am/pm part of times as either:
a.m.
or
AM
but not as:
am
i.e. lowercase without periods.
How do you render times with lowercase am/pm?
NOTE: I thought of the answer while typing in this question, so I figured instead of scrapping it I'd share my answer in case it's helpful to someone else.