django 템플릿 경로

354 단어
TEMPLATE_DIRS = (
 os.path.join(os.path.dirname("test_django"), 'templates').replace('\\', '/'),
)

정적 파일 경로
STATICFILES_DIRS = (
    os.path.join(BASE_DIR, "static"),
)

sae static file
handlers:
- url: /static
  static_dir: /static

좋은 웹페이지 즐겨찾기