Ejemplo n.º 1
0
def form(data):
    ''' the form for editing this type of post '''
    # pylint: disable=star-args
    return render_template_string(my('form.html'), **data)
Ejemplo n.º 2
0
def screen_js():
    ''' return the js needed to display this content. '''
    return my('screen.js')
Ejemplo n.º 3
0
def form(data):
    ''' the form for editing this type of post '''
    # pylint: disable=star-args
    return render_template_string(my('form.html'), **data)
Ejemplo n.º 4
0
def screen_js():
    ''' return the js needed to display this content. '''
    return my('screen.js')
Ejemplo n.º 5
0
def screen_js():
    ''' return the javascript for displaying these images correctly '''
    return my('screen.js')
Ejemplo n.º 6
0
def form(data):
    ''' return the html form for editing an image post '''
    # pylint: disable=star-args
    return render_template_string(my('form.html'), **data)
Ejemplo n.º 7
0
def screen_js():
    ''' the js needed to display a post correctly. '''
    return my('screen.js')
Ejemplo n.º 8
0
def screen_js():
    ''' the js needed to display a post correctly. '''
    return my('screen.js')
Ejemplo n.º 9
0
def form(data):
    ''' return the html for editing a text post '''
    # pylint: disable=star-args
    return render_template_string(my('form.html'), **data)
Ejemplo n.º 10
0
def screen_js():
    ''' return the javascript for doing the dirty work. '''
    return my('screen.js')
Ejemplo n.º 11
0
def screen_js():
    ''' return the javascript for displaying these images correctly '''
    return my('screen.js')
Ejemplo n.º 12
0
def screen_js():
    """ return the javascript for doing the dirty work. """
    return my("screen.js")
Ejemplo n.º 13
0
def form(data):
    """ the form for editing this type of post """
    return render_template_string(my("form.html"), **data)  # pylint: disable=star-args