TurboGears

テンプレートエンジン Kid

繰り返し コントローラ @expose(template="sample.templates.hello") def hello(self): flash("this is flash message") return dict(list=["a","b","c"]) テンプレート <span py:for="item in list">$item</span> 出力結果 <span>a</span><span>b</span><span>c</span> スクリプトレット いざというときには テンプレート $name for文…

TurboGears - MVC

sample というプロジェクトを作ると sample/sample/controllers.pyができて、これの中身を見ると import turbogears as tg from turbogears import controllers, expose, flash # from sample import model # import logging # log = logging.getLogger("sam…