Requires {% load tz %}
Add {% load tz %} near the top of any template that
uses |utc. Without it Django does not
know the name and raises TemplateSyntaxError.
Converts one aware datetime to UTC.
Template
{% load tz %}
{{ value|utc }}
Handy where a timestamp has to be unambiguous — a log line, or something another system will parse.
