Ejemplo n.º 1
0
def templateDict(request):
    '''
    Will be accessible as {{ data }} in your template.
    Remember that this can be a dict or whatever you want
    but the data will loaded at page load, not when you open
    the filter!
    '''

    form = getIpInputHtml(request)
    return {'form': form}
Ejemplo n.º 2
0
def templateDict(request):
    '''
    Will be accessible as {{ data }} in your template.
    Remember that this can be a dict or whatever you want
    but the data will loaded at page load, not when you open
    the filter!
    '''

    form = getIpInputHtml(request)
    return {'form': form}
Ejemplo n.º 3
0
Archivo: api.py Proyecto: xeor/fecto
 def get(self, request):
     html = getIpInputHtml(request)
     return html
Ejemplo n.º 4
0
Archivo: api.py Proyecto: xeor/fecto
 def get(self, request):
     html = getIpInputHtml(request)
     return html