diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2014-12-14 10:17:18 +0100 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2014-12-28 17:02:29 +0100 |
| commit | fdbfc98003f0ba2d3a12def63a75560791f3602d (patch) | |
| tree | 0238fba169970595f1a8c44d53550fada6236b4f /tests/context_processors/views.py | |
| parent | a0141f9eac03f0fef722e757253bbc939c018f77 (diff) | |
Deprecated some arguments of django.shortcuts.render(_to_response).
dictionary and context_instance and superseded by context.
Refactored tests that relied context_instance with more modern idioms.
Diffstat (limited to 'tests/context_processors/views.py')
| -rw-r--r-- | tests/context_processors/views.py | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/tests/context_processors/views.py b/tests/context_processors/views.py index 913877f20a..1a7eda0b16 100644 --- a/tests/context_processors/views.py +++ b/tests/context_processors/views.py @@ -1,20 +1,12 @@ -from django.shortcuts import render_to_response -from django.template import context_processors -from django.template.context import RequestContext +from django.shortcuts import render from .models import DebugObject def request_processor(request): - return render_to_response( - 'context_processors/request_attrs.html', - context_instance=RequestContext(request, {}, processors=[context_processors.request])) + return render(request, 'context_processors/request_attrs.html') def debug_processor(request): - - return render_to_response( - 'context_processors/debug.html', - context_instance=RequestContext(request, { - 'debug_objects': DebugObject.objects, - }, processors=[context_processors.debug])) + context = {'debug_objects': DebugObject.objects} + return render(request, 'context_processors/debug.html', context) |
