Skip to content

Commit 09dec55

Browse files
committed
[checklists] Render checklists title using UTC time.
1 parent ed3d1bf commit 09dec55

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

checklists/templates/checklists/release-security-skeleton.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% load checklist_extras tz %}
22
{% with cves=instance.cves versions=instance.versions cves_length=instance.cves|length %}
3-
# Django Security Release: {{ versions|enumerate_items }} ({{ when }})
3+
# Django Security Release: {{ versions|enumerate_items }} ({{ when|utc|date:"N j, Y, P" }} UTC)
44

55
## 14 days before
66

@@ -178,7 +178,7 @@ https://docs.djangoproject.com/en/dev/internals/security/#security-issue-severit
178178
- Go to https://hackerone.com/bugs?organization_inbox_handle=django_inbox
179179
- Select the relevant report and close it as `Resolved` with message:
180180
```
181-
This issue was fixed and released on {{ instance.when }}.
181+
This issue was fixed and released on {{ instance.when|utc|date:"N j, Y" }}.
182182
183183
{{ instance.blogpost_title }}
184184

checklists/templates/checklists/release-skeleton.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
{% load checklist_extras %}
2-
# Django {{ release.version_verbose }} {{ title }} - {{ when|date }}
1+
{% load checklist_extras tz %}
2+
# Django {{ release.version_verbose }} {{ title }} - {{ when|utc|date:"N j, Y, P" }}
33

44
{% if release.status == "a" %}
55
## One or Two months before Feature Freeze

0 commit comments

Comments
 (0)