我不太确定我的目录结构是否具有正确的层次结构,因此我决定停止开发,除非我能做得很好。我有订单、客户、用户。
所以我所拥有的是:
myproj
|-myproj
|-web_app
|---orders (with views.py, ajax.py)
|----templatetags
|---users
|---customers
|---search
|---static
|-----app
|-------_base
|---------css
|---------images
|---------js
|-------orders
|---------css
|---------images
|---------js
|-------customers
|---------css
|---------images
|---------js
|-------users
|---------css
|---------images
|---------js
|-----bootbox
|-----bootstrap
|-------css
|-------fonts
|-------js
|-----dajax
|---templates
models.py 在 web_app 目录下,所有模块都有共同的模型。我的问题是:
1)你会在这个结构中做哪些改变?(每个模块的静态文件应该在哪里?) 2)我在插入用户模板中的 orders/templatetags/orders_extras.py 中定义的自定义模板标签时遇到问题。如何为每个“模块”制作一些通用的模板标签?
谢谢你。