Igor Starikov

Results 187 comments of Igor Starikov

What do you mean by preferences UI update? Do you have some changes, than reload and those are not shown in Admin?

> The mark_safe() should do the same think, as |safe filter. Except we can better handle it in the code. Yeap, it's single entry point (code edit) versus multiple (override...

> OK, so do you agree that the best method would be to use mark_safe() when allowed by some settings variable? What I'm concerned with is: if it'd be a...

The purpose of `SITETREE_DYNAMIC_ONLY` as documented [here](https://github.com/idlesign/django-sitetree/blob/master/sitetree/settings.py#L23) is to prevent reading static trees from DB entirely. `sitetree_resync_apps` is to make your trees static. Attaching tree items was initialy implemented to...

Sorry for the delay. Actually such behaviour is expected. > As a fix, I think sitetree should attempting matching this against all possible urls, not just the first one returned....

Hi, Sorry for the delay. > Is there anyway to only show a particular item on the tree when the page is being accessed? From your description I understand that...

You may want to give a try to breadcrumbs as a reminder of the current page, as I mentioned above. Since there's an option to hide items from menu and...

Hi, Thank you for the idea. Have you tried overriding ``ModelAdmin.has_add_permission()`` approach? It seem rather easy and flexible. Possibly more flexible than restrictions per-user. You see, I'm afraid there's no...

Ah, I see. Thank you for the clarification. Adding new ``has_add_tree_item_permission()`` with backward compatible implementation sounds quite reasonable. Pull request is welcome, if you will.

Hi, You may want to try to attach your submenus to some parent tree items with the help of `parent_tree_item_alias`. See: https://github.com/idlesign/django-sitetree/blob/c932cd35869913ad611d0c31c244f8a4ce61dea2/sitetree/tests/test_dynamic.py#L74