구)홈페이지 오탈자 보기
파이썬 웹 프로그래밍: Django(장고)로 배우는 쉽고 빠른 웹 개발

 

페이지오탈자 내용등록일
388

(88쪽, 코드 경로)

TEMPLATE_DIRS = ['/hom/shkim/pyBook/ch3/templates']

->

TEMPLATE_DIRS = ['/home/shkim/pyBook/ch3/templates']

2015-04-031
393

(93쪽, 그림 3-7)

uris.py     ->     urls.py

2015-04-151
3107

(107쪽, 표 3-6(장고의 필드 클래스))

models.ForeignKey(Question)
models.CharField(max_length=200)
models.IntegerField(default=0)

->

models.CharField(max_length=200)
models.IntegerField(default=0)
models.ForeighKey(Question)

2015-04-131
5205

(205쪽, 예제 5-3)

from polls.models import Book, Author, Publisher

->

from books.models import Book, Author, Publisher

2015-04-251
5205

(205쪽, 예제 5-2)

publisher = models.ForeignKey(Publisher)

->

publisher = models.ForeignKey('Publisher')

2015-04-251