diff --git a/module/custom/lang/en.php b/module/custom/lang/en.php index 5cc5ee129b..3b7f2a26bf 100644 --- a/module/custom/lang/en.php +++ b/module/custom/lang/en.php @@ -77,7 +77,7 @@ $lang->custom->user->fields['statusList'] = 'Status'; $lang->custom->user->fields['contactField'] = 'Available Contact'; $lang->custom->user->fields['deleted'] = 'Deleted User'; -$lang->custom->system = array('flow', 'working', 'required', 'score', 'setDynamic'); +$lang->custom->system = array('flow', 'working', 'required', 'score'); $lang->custom->block->fields['closed'] = 'Closed Block'; diff --git a/module/my/css/common.css b/module/my/css/common.css index cbbfe79103..c3ea4341f0 100644 --- a/module/my/css/common.css +++ b/module/my/css/common.css @@ -6,3 +6,5 @@ .dropdown-list > li > a {display: block; padding: 3px 20px; clear: both; font-weight: normal; line-height: 1.53846154; color: #141414; white-space: nowrap;} .dropdown-list > li > a:hover, .dropdown-list > li > a:focus {color: #1a4f85;text-decoration: none;background-color: #ddd;} + +.btn-toolbar .nav-title{float:left; display:inline-block; padding: 6px 12px; margin-bottom: 0; font-size: 13px; font-weight: bolder; line-height: 18px; text-align: center; white-space: nowrap; vertical-align: middle;} diff --git a/module/my/view/testcase.html.php b/module/my/view/testcase.html.php index ebca6ff777..0844a8981e 100644 --- a/module/my/view/testcase.html.php +++ b/module/my/view/testcase.html.php @@ -19,8 +19,11 @@
{$pager->recTotal}"; + echo "{$lang->testtask->common}: "; echo html::a(inlink('testtask', "type=wait"), "{$lang->testtask->wait}", '', "class='btn btn-link'"); echo html::a(inlink('testtask', "type=done"), "{$lang->testtask->done}", '', "class='btn btn-link'"); + echo ""; + echo "{$lang->testcase->common}: "; echo html::a(inlink('testcase', "type=assigntome"), "{$lang->testcase->assignToMe}" . ($type == 'assigntome' ? $recTotalLabel : ''), '', "class='btn btn-link" . ($type == 'assigntome' ? ' btn-active-text' : '') . "'"); echo html::a(inlink('testcase', "type=openedbyme"), "{$lang->testcase->openedByMe}" . ($type == 'openedbyme' ? $recTotalLabel : ''), '', "class='btn btn-link" . ($type == 'openedbyme' ? ' btn-active-text' : '') . "'"); ?> diff --git a/module/my/view/testtask.html.php b/module/my/view/testtask.html.php index 86500cf681..60c97e9458 100644 --- a/module/my/view/testtask.html.php +++ b/module/my/view/testtask.html.php @@ -16,8 +16,11 @@
{$pager->recTotal}"; + echo "{$lang->testtask->common}: "; echo html::a(inlink('testtask', "type=wait"), "{$lang->testtask->wait}" . ($type == 'wait' ? $recTotalLabel : ''), '', "class='btn btn-link" . ($type == 'wait' ? ' btn-active-text' : '') . "'"); echo html::a(inlink('testtask', "type=done"), "{$lang->testtask->done}" . ($type == 'done' ? $recTotalLabel : ''), '', "class='btn btn-link" . ($type == 'done' ? ' btn-active-text' : '') . "'"); + echo ""; + echo "{$lang->testcase->common}: "; echo html::a(inlink('testcase', "type=assigntome"), "{$lang->testcase->assignToMe}", '', "class='btn btn-link'"); echo html::a(inlink('testcase', "type=openedbyme"), "{$lang->testcase->openedByMe}", '', "class='btn btn-link'"); ?>