如何在django中指定放置静态文件的位置?

时间:2016-09-04 09:46:54

标签: django python-3.x routing django-settings

使用select status, task, owner, group_concat(date, details order by date separator ' ') from tracker where date between '" . $date . "' and '" . $date1 . "' group by status, task, owner order by status 创建第一个项目后,您将获得一个类似于此目录的目录

django-admin startproject mysite

我想要的是3个目录,用于放置可在所有django应用程序中使用的各种文件。

mysite/
    manage.py       - script for running tasks
    mysite/
        __init__.py
        settings.py - for general setting configuration
        urls.py     - for routing configuration
        wsgi.py     - for webserver configuration

我需要在mysite/ manage.py javascript_css/ ... html_templates/ ... custom_modules/ ... mysite/ __init__.py settings.py urls.py wsgi.py 中更改哪些设置才能配置此行为,以及如何在我的django应用中引用javascript_css / html_templates / custom_modules?

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

您可以在django文档中找到所有内容:

  1. static files
  2. html templates
  3. 将文件夹命名为statictemplates可能更好,它更具可读性。