orumaxon

Results 2 comments of orumaxon

Hi Please tell me the status of this thread. I have a similar problem generating urls for sub-applications, so I had to create my own processing as "url_subapp". Has aiohttp...

I suggest doing this For render templatetag (modification of `aiohttp_jinja2.helpers.url_for`): ```python @jinja2.pass_context def url_for(context, __route_name: str, **parts: Any) -> URL: *sub_apps, route_name = __route_name.split(':') app = context['app'] for sub_app in...