📜  如何在 django 中连接模板 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:24.689000             🧑  作者: Mango

代码示例1
# Template directory setting
TEMPLATE_DIRS = (
    os.path.join(os.path.dirname(__file__), 'templates'),
)