From fe644c76c55f6586287b2c47b7cf6c468bbdf213 Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 29 Sep 2017 17:03:21 -0700 Subject: [PATCH] Better explanations of how status label metas work --- resources/lang/en/admin/statuslabels/message.php | 9 ++++++++- resources/views/statuslabels/index.blade.php | 6 ++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/resources/lang/en/admin/statuslabels/message.php b/resources/lang/en/admin/statuslabels/message.php index 619a5a509c..2937f84978 100644 --- a/resources/lang/en/admin/statuslabels/message.php +++ b/resources/lang/en/admin/statuslabels/message.php @@ -20,6 +20,13 @@ return array( 'confirm' => 'Are you sure you wish to delete this Status Label?', 'error' => 'There was an issue deleting the Status Label. Please try again.', 'success' => 'The Status Label was deleted successfully.' - ) + ), + + 'help' => array( + 'undeployable' => 'These assets cannot be assigned to anyone.', + 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'archived' => 'These assets cannot be checked out, and will only show up in the Archived view. This is useful for retaining information about assets for budgeting/historic purposes but keeping them out of the day-to-day asset list.', + 'pending' => 'These assets can not yet be assigned to anyone, often used for items that are out for repair, but are expected to return to circulation.', + ), ); diff --git a/resources/views/statuslabels/index.blade.php b/resources/views/statuslabels/index.blade.php index 6f8cafee25..c7194adfa1 100755 --- a/resources/views/statuslabels/index.blade.php +++ b/resources/views/statuslabels/index.blade.php @@ -46,6 +46,12 @@

{{ trans('admin/statuslabels/table.about') }}

{{ trans('admin/statuslabels/table.info') }}

+ +

{{ trans('admin/statuslabels/table.deployable') }}: {!! trans('admin/statuslabels/message.help.deployable') !!}

+

Pending{{ trans('admin/statuslabels/message.help.pending') }}

+

Undeployable: {{ trans('admin/statuslabels/message.help.undeployable') }}

+

Archived: {{ trans('admin/statuslabels/message.help.archived') }}

+