원문 : docs.djangoproject.com/en/1.11
웹 프레임워크인 장고는 사용설명서(Documentation, 이후 장고 Docs로 표기합니다.)가 잘 정리되어 있는 편입니다. 개인공부를 겸해 Tutorials 부분을 번역 및 정리해보려 합니다. 큰 흐름은 튜토리얼 순서를 그대로 따라가고, 세부적인 내용은 차차 수정하겠습니다. 의역을 기반으로 개인적인 해석이 덧붙을 예정입니다. 오류지적과 조언 감사히 받겠습니다.
0. Django Docs의 구성과 Tutorials 목차
Django Docs는 총 16개의 항목으로 구분되어 있고, 이 16개의 항목은 크게 Tutorials / Topic guides / Reference guides / How-to guide 로 나누어 집니다. 장고나 웹 어플리케이션을 처음 접하는 사람은 튜토리얼 또는 2.First steps 에서 시작하면 좋습니다.
Tutorials 는 사실 2. First steps 안에 속해있는데요, 지금 당장 장고의 개요와 설치 방법등을 이야기하기에는 부족함이 있어, 먼저 튜토리얼만 다루도록 하겠습니다.
[튜토리얼의 순서]는 다음과 같습니다.
Part1 : Requests and responses - 사용자의 요청 받고 응답하기
Part2 : Models and the admin site - 'Model'과 '관리자 사이트'
Part3 : Views and templates - 'View'와 'Template'
Part4 : Forms and generic views - 'Form'과 'generic view'
Part5 : Testing - 테스트하기
Part6 : Static files - Static file 관리하기
Part 7 : Customizing the admin site - 관리자 사이트 설정하기
+ Advanced Tutorials 1 : How to write reusable apps
+ Advanced Tutorials 2 : Writing your first patch for Django
[Django Docs 전체 목차]
1. How the documentation is organized
2. First steps : Tutorials는 여기 속해있습니다.
3. The model layer
4. The view layer
5. The template layer
6. Forms
7. The development process
8. The admin
9. Security
10. Internationalization and localization
11. Performance and optimization
12. Python compatibility
13. Geographic framework
14. Common Web application tools
15. Other core functionalities
16. The Django open-source project