mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
30 lines
720 B
ReStructuredText
30 lines
720 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.2 -> 0.3
|
||
|
----------
|
||
|
|
||
|
- Under `INSTALLED_APPS`, `bootstrapform` needs to be replaced with `bootstrap4form`
|
||
|
|
||
|
- Unless turning off `pinax_teams`, need to 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`
|
||
|
|
||
|
|