Hello!
We need to implement template tag {% url app_name action_name param1=val1 %} to use in templates. Similar tags we can find in Django and other projects. Idea is in get absolute url address of page with given action with given properties list.
For example, this tag {% url blog new_entry blog=blog %} transforms to "/blog/antons_blog/create_entry".
If you have ideas about how to implement this in very easy way - please tell me. Or, provide code to solve this issue. Thanks!