Skip to content

Commit 600ae4c

Browse files
dani-santos-codegitbook-bot
authored andcommitted
GitBook: [master] 4 pages modified
1 parent 8593e46 commit 600ae4c

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# README 📚
1+
# Code Resource Center 📚
22

33
## Creating a DB
44

SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Table of contents
22

3-
* [README 📚](README.md)
3+
* [Code Resource Center 📚](README.md)
44
* [Documentation](documentation/README.md)
55
* [Security](documentation/security.md)
66
* [Django Design Principles 📐📏](documentation/design.md)

documentation/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# Documentation
22

3+
4+

documentation/design.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The framework deduces as much as possible from as little as possible.
3434

3535
## ➡️ Explicit is better than implicit
3636

37-
According to Python's core principles stated in PEP 20[https://www.python.org/dev/peps/pep-0020/], Django shouldn’t do too much “magic.” Magic would be everything done for you under the hood. Magic should only be used if there is a good reason for it. Django's documentation is clear and it is very easy to customize it.
37+
According to Python's core principles stated in PEP 20\[[https://www.python.org/dev/peps/pep-0020/](https://www.python.org/dev/peps/pep-0020/)\], Django shouldn’t do too much “magic.” Magic would be everything done for you under the hood. Magic should only be used if there is a good reason for it. Django's documentation is clear and it is very easy to customize it.
3838

3939
## ➡️ Models
4040

@@ -58,10 +58,11 @@ This is why the APPEND\_SLASH setting is set to True as default.
5858

5959
## ➡️ Template System
6060

61-
The template system controls presentation and presentation-related logic only. It doesn't support functionality that goes beyond this basic goal.
61+
The template system controls presentation and presentation-related logic only. It doesn't support functionality that goes beyond this basic goal.
6262

6363
Template inheritance allows for elements to be stored in a single place, eliminating duplicate code `base.html`.
6464

6565
It provides simple tools such as branching and looping, that is essential for making presentation-related decisions, but avoids advanced logic.
6666

6767
_More information can be found at \[_[https://docs.djangoproject.com/en/2.1/misc/design-philosophies/](https://docs.djangoproject.com/en/2.1/misc/design-philosophies/)_\]_
68+

0 commit comments

Comments
 (0)