What is the best location to put templates in django project?

后端 未结 9 628
情歌与酒
情歌与酒 2020-12-07 13:29

What is the best location to put templates in django project?

9条回答
  •  自闭症患者
    2020-12-07 13:50

    I understood TEMPLATE_DIRS requires an absolute path. And I don't like absolute paths in my code. So this is working well for me, in settings.py:

    import os
    
    TEMPLATE_DIRS = (
        os.path.join(os.path.dirname(os.path.realpath(__file__)),
                     "../APPNAME/templates")
    )
    

提交回复
热议问题