Reading the first book and on page 45 (Version 1.1 of the book) there is an import for view.py which creates an error
from django.template import render
After searching online a forum advised to use the following code which fixed the error.
from django.shortcuts import render
Has anyone experienced this error? why the above fixes it? will it cause other errors down the line?
Regards
RZ