How to change the default Python Django date template format?

To change the default Python Django date template format, we can use the date filter.

For instance, we write

<p>Birthday: {{ birthday|date:"M d, Y" }}</p>

in our template to change the date format of birthday with the date filter.

We should get something like

Jan 29, 2000

rendered