I'm using WTForms and GAE (python) Datastore. I'm trying to pass the key value to the form for CRUD purposes, but it's sending the object, not the key as a string. Here's the html output line:
<td> <input id="ts_list-0-key" name="ts_list-0-key" type="hidden" value="<bound method TransactionSchedule.key of <main.TransactionSchedule object at 0x04F19070>>"> </td>
All other fields are populating correctly.
Other info: I'm using FormField and FieldList together to repeat multiple subforms. To populate the subforms I'm using append_entry():
for ts in tslist:
form.ts_list.append_entry(ts)
Can't seem to find this info anywhere, but maybe I'm a bad Googler.
I've tried:
-Converting the key to a string in the template (jinja2), but can't seem to get that to work
-Creating a __str__ and a __unicode__ method in the db.Model class that returns the value as a string, but I think I read somewhere that's not even allowed :/
Any help would be great!
Let me know if you need to see more of the code, thanks!