使用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?
感谢您的帮助
答案 0 :(得分:1)
您可以在django文档中找到所有内容:
将文件夹命名为static
和templates
可能更好,它更具可读性。