Update usage of forms submit icon to use generic icon classes and use font awesome icons instead

This commit is contained in:
Roberto Rosario
2015-04-01 03:22:36 -04:00
parent 40be9d9af1
commit 2e0e6f7fe9
6 changed files with 7 additions and 9 deletions

View File

@@ -140,7 +140,7 @@ def assign_remove(request, left_list, right_list, add_method, remove_method, lef
'form': unselected_list,
'title': left_list_title or ' ',
'submit_label': _('Add'),
'submit_icon_famfam': 'add'
'submit_icon': 'fa fa-plus'
}
},
{
@@ -150,7 +150,7 @@ def assign_remove(request, left_list, right_list, add_method, remove_method, lef
'form': selected_list,
'title': right_list_title or ' ',
'submit_label': _('Remove'),
'submit_icon_famfam': 'delete'
'submit_icon': 'fa fa-minus'
}
},