[IMP] Footer with right alignment.

bzr revid: vba@tinyerp.com-20120821070106-aobaleupjvkctdvc
This commit is contained in:
Vijaykumar Baladaniya 2012-08-21 12:31:06 +05:30
parent 7245850cf7
commit 9262f8f8c5
1 changed files with 1 additions and 1 deletions

View File

@ -386,7 +386,7 @@ class survey_question_wiz(osv.osv_memory):
etree.SubElement(xml_button_group, 'button', {'special': "cancel", 'string' : 'Done', 'context' : tools.ustr(context), 'class':"oe_right oe_highlight"})
else:
etree.SubElement(xml_button_group, 'button', {'name':"action_next",'string': tools.ustr(but_string) ,'type':"object",'context' : tools.ustr(context), 'class':"oe_right oe_highlight"})
etree.SubElement(xml_button_group, 'label', {'string': tools.ustr(page_number+ 1) + "/" + tools.ustr(total_pages), 'class':"oe_survey_title_page"})
etree.SubElement(xml_button_group, 'label', {'string': tools.ustr(page_number+ 1) + "/" + tools.ustr(total_pages), 'class':"oe_survey_title_page oe_right"})
root = xml_form.getroottree()
result['arch'] = etree.tostring(root)