将变量传递给pybottle中的多个模板

时间:2014-03-29 18:00:58

标签: python bottle

我们在controller.py中有一个函数:

@bottle.get("/")
def start():
    username = check_login()
    l = artifacts.get_entries(100)
    return bottle.template('streams_template', 
        dict(myentries=l, username=username))

streams_template.tpl

% include menu.tpl

menu.tpl

<a class="menu" href="/cart/{{username}}"><div class="menulist">Your Cart</div></a>

这将生成:NameError:name&#39; username&#39;未定义

我应该如何将{{username}}传递给menu.tpl?

0 个答案:

没有答案