As per latest documentation:
http://web2py.com/books/default/chapter/29/13#Deployment-recipes
In model i have:
db.define_table('test',
    Field('test', 'string'),
    Field('image', 'upload'))

In controller I have:
def test():
    form = SQLFORM(db.test)
    return dict(form=form)

In view I have:
{{extend 'layout.html'}}
<div>{{=form}}</div>

does not load image to local GAE datastore, is this missing
someething? or what is missing from docs?
any feedback appreciated.

On Dec 20, 8:12 pm, Massimo Di Pierro <massimo.dipie...@gmail.com>
wrote:
> where is the typo? which file?
>
> On Nov 19, 10:04 am, Bruno Rocha <rochacbr...@gmail.com> wrote:
>
>
>
>
>
>
>
> > On Sat, Nov 19, 2011 at 2:02 PM, Bruno Rocha <rochacbr...@gmail.com> wrote:
> > > *if request.env.web2py_runtime_gae: *
>
> > this was a typo when writing the email, actually is
>
> > *if **NOT** request.env.web2py_runtime_gae:*

Reply via email to