diff options
author | Stephen Finucane <stephenfinucane@hotmail.com> | 2015-04-07 22:20:48 +0100 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2015-05-03 13:46:52 +0800 |
commit | a48f76a2d3a98c21d4b37f19cf84073e77db55c8 (patch) | |
tree | c91e98b4f522f0ec8072d19d89a3bae64040a2e0 /templates/base.html | |
parent | 3d74843a8982926ab4ce310ed937a4f41ee36810 (diff) | |
download | patchwork-a48f76a2d3a98c21d4b37f19cf84073e77db55c8.tar patchwork-a48f76a2d3a98c21d4b37f19cf84073e77db55c8.tar.gz |
Resolve removed 'AUTH_PROFILE_MODULE' setting
The 'AUTH_PROFILE_MODULE' setting, and the 'get_profile()' method on
the 'User' model are removed in Django 1.7. This causes errors when
using Patchwork with Django 1.7+.
There are three changes necessary:
* Replace profile model's 'ForeignKey' with a 'OneToOneField'
* Remove all 'get_profile()' calls
* Delete 'AUTH_PROFILE_MODULE' settings from 'settings.py'
These changes are discussed here:
http://deathofagremmie.com/2014/05/24/retiring-get-profile-and-auth-profile-module/
Django 1.6 also introduces two other notable changes:
* The 'XViewMiddleware' module has been moved
* A new test runner has been introduced
It is not possible to fix these issues without breaking compatibility
with Django 1.5. As a result they have been ignored and must be
resolved in a future release.
Signed-off-by: Stephen Finucane <stephenfinucane@hotmail.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index 56091b4..f04d6e1 100644 --- a/templates/base.html +++ b/templates/base.html @@ -22,7 +22,7 @@ ><strong>{{ user.username }}</strong></a> <br/> <a href="{% url 'patchwork.views.user.todo_lists' %}">todo - ({{ user.get_profile.n_todo_patches }})</a> :: + ({{ user.profile.n_todo_patches }})</a> :: <a href="{% url 'patchwork.views.bundle.bundles' %}">bundles</a> <br/> <a href="{% url 'patchwork.views.user.profile' %}">profile</a> :: |