linked_tables in smartgrid can be a dict()
This commit is contained in:
2
VERSION
2
VERSION
@@ -1 +1 @@
|
||||
Version 2.0.9 (2012-09-23 16:30:25) stable
|
||||
Version 2.0.9 (2012-09-23 16:31:41) stable
|
||||
|
||||
@@ -2251,7 +2251,7 @@ class SQLFORM(FORM):
|
||||
if nargs>len(args)+1:
|
||||
query = (field == id)
|
||||
if isinstance(linked_tables,dict):
|
||||
linked_tables = linked_tables[table._tablename]
|
||||
linked_tables = linked_tables.get(tablename,[])
|
||||
if linked_tables is None or referee in linked_tables:
|
||||
field.represent = lambda id,r=None,referee=referee,rep=field.represent: A(callable(rep) and rep(id) or id,_class=trap_class(),_href=url(args=['view',referee,id]))
|
||||
except (KeyError,ValueError,TypeError):
|
||||
@@ -2277,7 +2277,7 @@ class SQLFORM(FORM):
|
||||
check[rfield.tablename] = \
|
||||
check.get(rfield.tablename,[])+[rfield.name]
|
||||
if isinstance(linked_tables,dict):
|
||||
linked_tables = linked_tables[tablename]
|
||||
linked_tables = linked_tables.get(tablename,[])
|
||||
for tablename in sorted(check):
|
||||
linked_fieldnames = check[tablename]
|
||||
tb = db[tablename]
|
||||
|
||||
Reference in New Issue
Block a user