mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-21 23:43:11 +01:00
35 lines
821 B
ReStructuredText
35 lines
821 B
ReStructuredText
Upgrading
|
|
=========
|
|
|
|
Your ``django-helpdesk`` installation can be upgraded to the latest version using the release notes below.
|
|
|
|
Prerequisites
|
|
-------------
|
|
|
|
Please consult the Installation instructions for general instructions and tips.
|
|
The tips below are based on modifications of the original installation instructions.
|
|
|
|
|
|
0.3 -> 0.4
|
|
----------
|
|
|
|
- Under `INSTALLED_APPS`, `bootstrap4form` needs to be replaced with `bootstrap5form`
|
|
|
|
|
|
0.2 -> 0.3
|
|
----------
|
|
|
|
- Under `INSTALLED_APPS`, `bootstrapform` needs to be replaced with `bootstrap4form`
|
|
|
|
- Unless turning off `pinax_teams`, add the following to `INSTALLED_APPS` for `pinax_teams`::
|
|
|
|
"account",
|
|
"pinax.invitations",
|
|
"pinax.teams",
|
|
"reversion",
|
|
|
|
|
|
- If using `send_templated_mail`, then it now needs to be imported from `helpdesk.templated_email`
|
|
|
|
|