Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Description

<!-- What does this PR do, and why? -->

## Checklist

- [ ] Tests pass locally (`pytest`)
- [ ] Linted (`ruff check . --fix && ruff format .`)
- [ ] New/changed user-facing strings in templates, forms, and views are
wrapped for translation (`{% trans %}`/`{% blocktrans %}` in templates,
`gettext`/`gettext_lazy` in Python), and `django-admin makemessages -a`
was run to update `locale/*/LC_MESSAGES/django.po` for existing
languages
- [ ] Migrations included, if models changed (`python manage.py makemigrations`)
Loading