django-pagetree
django-pagetree copied to clipboard
CMS guts. Hierarchical tree of pages that are in turn made up of blocks.
In UELC, at least, it would be simpler if Hierarchy.base_url had `unique=True`. The back-end shouldn't allow users to clone multiple hierarchies at the same path.
`block` is defined as a built-in django templatetag, so it can conflict with pagetree's `block` context var.
To avoid having to do things like this when testing the pageblock: ``` py # Set the check-in block's setting block to the one we just # created. goalcheckinblock.goal_setting_block =...
There's a `Section.submitted` method, but the generic `PageView` uses the term `is_submitted`. I think we should stick to one term for this. I'm thinking we can rename `Section.submitted` to `Section.is_submitted`...
I haven't been able to reproduce this bug yet, and I'm not certain that it's Pagetree. Jess noticed that yesterday on worth2 the "Add Child" form would hang for a...
I have a custom pageblock that manages a dynamic formset, and it's not clear how I would integrate that with pagetree's pre-generated ``. For example, when using the "change my...
What is the reasoning for using the class name 'Section' for nodes in the pagetree? I think it would make more sense to call them Pages.
These can be implemented to just be the opposites of their corresponding `unlocked` methods. Then the user can have a choice whether they want to use `locked` or `unlocked` --...
This is just a suggestion, but I think the default interface for people adding/editing content, may be confusing for people that are not ETs/CCNMTL Employees. This was pointed out in...
We need to come up with a way to better customize pageblock forms. If you create a custom pageblock that needs to handle POST data, but you need to render...