diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 3ab8a5d..66cedf7 100644
a
|
b
|
Available format strings:
|
1251 | 1251 | A ``'AM'`` or ``'PM'``. ``'AM'`` |
1252 | 1252 | b Month, textual, 3 letters, lowercase. ``'jan'`` |
1253 | 1253 | B Not implemented. |
1254 | | c ISO 8601 Format. ``2008-01-02T10:30:00.000123`` |
| 1254 | c ISO 8601 format. (Note: unlike others ``2008-01-02T10:30:00.000123+02:00``, |
| 1255 | formatters, like "Z", "O" or "r", the or ``2008-01-02T10:30:00.000123`` if the datetime is naive |
| 1256 | "c" formatter will not add timezone |
| 1257 | offset if value is a `naive datetime`_.) |
1255 | 1258 | d Day of the month, 2 digits with ``'01'`` to ``'31'`` |
1256 | 1259 | leading zeros. |
1257 | 1260 | D Day of the week, textual, 3 letters. ``'Fri'`` |
… |
… |
used, without applying any localization.
|
1343 | 1346 | .. versionchanged:: 1.2 |
1344 | 1347 | Predefined formats can now be influenced by the current locale. |
1345 | 1348 | |
| 1349 | .. _naive datetime: http://docs.python.org/library/datetime.html#datetime.tzinfo |
| 1350 | |
1346 | 1351 | .. templatefilter:: default |
1347 | 1352 | |
1348 | 1353 | default |