Organize your code and templates in a natural directory structure
Project description
Django Tree View
Organize your view code and templates and in a directory structure, and automatically generate urls for them.
Terminology
"Tree View" refers the actual view function we've created, which processes a request according to code you write inside your "view tree".
Installation
-
pip install django_tree_view
-
In your urls.py file, add in a call to
make_tree_view
, passing in the python package name (dotted python path) of your view tree:from django_tree_view import make_tree_view urlpatterns = [ make_tree_view('my_view_tree'), ]
Note: we're not using django's path() here, and we didn't specify a url regex. make_tree_view() returns an object which dynamically resolves urls, matching them whenever there is a corresponding directory (with a
view_tree_node.py
module) inside of your view tree.Note: you can use
include('some_path/', [make_tree_view()])
if you want a url prefix. -
Optionally, add the full path to your view tree to the
DIRS
option of yourDjangoTemplates
backend:TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'my_view_tree')], ... }, ]
This will allow you to place page-specific templates inside the same directory which holds the view code for that url.
Organizing Your View Tree
TODO
TODO
When DEBUG and reloading, reload empty modules (not sure, but this might already be done).
"Single View Tree" approach
Our path resolver no longer matches when the "path directory" contains no view_tree_node.py
file.
I think we should change how view trees are "installed". The user should define one global VIEW_TREE_ROOT
. You can "install" reusable apps in your view tree by symlinking to them from your view tree.
This makes things easier to understand for the end user. They don't need understand make_tree_view()
. You have a single directory containing your view tree. Period.
The challenge: if an app is distributed on pypi, symlinking to it (in a way that can be copied between server environments), is not trivial.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for django_tree_view-4.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25b616e28a41d23cd0cb713a8679d05ce95bc5aef568ef7bbc97985a2d513a95 |
|
MD5 | 883ddbfd02b375ea68bea08c248cd421 |
|
BLAKE2b-256 | 1284d59a0990791f2feff5d8c306fcd47e75f5a9a15792c6fa2e0f78a2fa549a |