There is a small error on the update to be made in "Django Writing your
first app -07" page with following URL
https://docs.djangoproject.com/en/3.1/intro/tutorial07/
On this page, under "Customizing your project’s templates" section please
update
{{{
'DIRS': [BASE_DIR / 'templates'], to 'DIRS': [BASE_DIR, 'templates'],
}}}
else it causes following error :
TypeError: unsupported operand type(s) for /: 'str' and 'str' base_dir
please refer the following image for further reference :
--
Ticket URL: <https://code.djangoproject.com/ticket/32538>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* status: new => closed
* resolution: => duplicate
Comment:
This's not an bug. Duplicate of #32115.
--
Ticket URL: <https://code.djangoproject.com/ticket/32538#comment:1>