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

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

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

9条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-07 13:57

    Previous solution didn't work in my case. I used:

    TEMPLATE_DIRS = [ os.path.join(os.path.dirname(os.path.realpath(__file__)),"../myapp/templates") ]
    

提交回复
热议问题