Can you do something like this?

js_files = [ 
        URL(..., 'fancy_helper1.js'), 
        URL(..., 'fancy_helper2.js'), 
        ......, 
        URL(..., 'fancy_helper10.js'), 
        ]

def index(): 
    response.files.extend(js_files)
    return {'': LOAD('default', 'skeleton.load', ajax=False)} 

Reply via email to