March 2020
Intermediate to advanced
608 pages
17h 17m
English
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "For this recipe to work, you will need to have the contenttypes app installed."
A block of code is set as follows:
# requirements/dev.txt-r _base.txtcoveragedjango-debug-toolbarselenium
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
class Idea(CreationModificationDateBase, MetaTagsBase, UrlBase): title = models.CharField( _("Title"), max_length=200, ) content = models.TextField( _("Content"), )
Any command-line ...