From 824cc10aa0be6a9d46732258a1c63381d9f42435 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonel=20C=C3=A2mara?= Date: Thu, 14 Aug 2014 18:06:45 +0100 Subject: [PATCH] revert previous change due to the global implications --- gluon/sqlhtml.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gluon/sqlhtml.py b/gluon/sqlhtml.py index dc22c59f..c03930c1 100644 --- a/gluon/sqlhtml.py +++ b/gluon/sqlhtml.py @@ -971,8 +971,6 @@ class SQLFORM(FORM): inline=formstyle_inline, ) - default_formstyle='table3cols' - FIELDNAME_REQUEST_DELETE = 'delete_this_record' FIELDKEY_DELETE_RECORD = 'delete_record' ID_LABEL_SUFFIX = '__label' @@ -1015,7 +1013,7 @@ class SQLFORM(FORM): keepopts=[], ignore_rw=False, record_id=None, - formstyle=None, + formstyle='table3cols', buttons=['submit'], separator=': ', extra_fields=None, @@ -1024,7 +1022,7 @@ class SQLFORM(FORM): T = current.T self.ignore_rw = ignore_rw - self.formstyle = formstyle or SQLFORM.default_formstyle + self.formstyle = formstyle self.readonly = readonly # Default dbio setting self.detect_record_change = None