Added css grid support to generic_forms template

This commit is contained in:
Roberto Rosario
2011-02-07 17:30:41 -04:00
parent c096e95522
commit c618952f00
77 changed files with 19604 additions and 3 deletions

View File

@@ -143,7 +143,9 @@ def upload_document_with_type(request, document_type_id, multiple=True):
'form_list':[
{
'form':local_form,
'title':_(u'upload a local document')
'title':_(u'upload a local document'),
'grid':6,
'grid_clear':False if USE_STAGING_DIRECTORY else True,
},
],
}
@@ -169,6 +171,8 @@ def upload_document_with_type(request, document_type_id, multiple=True):
{
'form':staging_form,
'title':_(u'upload a document from staging'),
'grid':6,
'grid_clear':True,
},
)