# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 #
 from datetime import datetime
-from django.template import RequestContext
-from django.shortcuts import render_to_response, get_object_or_404
+from django.shortcuts import render, get_object_or_404
 from django.views.decorators import cache
 from suggest.forms import PublishingSuggestForm
 from . import models
 
     form = PublishingSuggestForm(initial={"books": u"%s — %s, \n" % (book.author, book.title)})
 
-    return render_to_response('pdcounter/book_stub_detail.html', {
+    return render(request, 'pdcounter/book_stub_detail.html', {
         'book': book,
         'pd_counter': pd_counter,
         'form': form,
-    }, context_instance=RequestContext(request))
+    })
 
 
 @cache.never_cache
 
     form = PublishingSuggestForm(initial={"books": author.name + ", \n"})
 
-    return render_to_response('pdcounter/author_detail.html', {
+    return render(request, 'pdcounter/author_detail.html', {
         'author': author,
         'pd_counter': pd_counter,
         'form': form,
-    }, context_instance=RequestContext(request))
+    })