inklesspen (owner)

Revisions

gist: 210373 Download_button fork
public
Public Clone URL: git://gist.github.com/210373.git
Embed All Files: show embed
Python #
1
2
3
4
5
6
7
def render_action():
    # actually getting the controller and action names from the environment is left as an exercise for the reader
    controller = "foo"
    action = "bar"
    template_name = "%s/%s.mako" % (controller, action)
    return render_mako(template_name)