django 模板路径

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


你可能感兴趣的:(django 模板路径)