Move links order for uniformity, move all delete button to the far right to reduce accidental clicking

This commit is contained in:
Roberto Rosario
2014-10-21 17:41:16 -04:00
parent 037b12cc6b
commit d0ed74dfc3
7 changed files with 8 additions and 8 deletions

View File

@@ -18,7 +18,7 @@ from .permissions import (PERMISSION_SMART_LINK_DELETE,
PERMISSION_SMART_LINK_VIEW)
register_links(Document, [smart_link_instances_for_document], menu_name='form_header')
register_links(SmartLink, [smart_link_edit, smart_link_delete, smart_link_condition_list, smart_link_acl_list])
register_links(SmartLink, [smart_link_edit, smart_link_condition_list, smart_link_acl_list, smart_link_delete])
register_links([SmartLink, 'linking:smart_link_list', 'linking:smart_link_create'], [smart_link_list, smart_link_create], menu_name='secondary_menu')
register_links(SmartLinkCondition, [smart_link_condition_edit, smart_link_condition_delete])
register_links(['linking:smart_link_condition_list', 'linking:smart_link_condition_create', 'linking:smart_link_condition_edit', 'linking:smart_link_condition_delete'], [smart_link_condition_create], menu_name='sidebar')