2016-12-14 05:36:19 -05:00
|
|
|
- status = local_assigns.fetch(:status)
|
2017-03-19 14:04:45 -04:00
|
|
|
- link = local_assigns.fetch(:link, true)
|
|
|
|
- title = local_assigns.fetch(:title, nil)
|
|
|
|
- css_classes = "ci-status ci-#{status.group} #{'has-tooltip' if title.present? }"
|
2016-12-14 05:36:19 -05:00
|
|
|
|
2017-01-27 09:20:57 -05:00
|
|
|
- if link && status.has_details?
|
2017-03-19 14:04:45 -04:00
|
|
|
= link_to status.details_path, class: css_classes, title: title do
|
2017-01-27 09:20:57 -05:00
|
|
|
= custom_icon(status.icon)
|
|
|
|
= status.text
|
|
|
|
- else
|
2017-03-19 14:04:45 -04:00
|
|
|
%span{ class: css_classes, title: title }
|
2017-01-27 09:20:57 -05:00
|
|
|
= custom_icon(status.icon)
|
|
|
|
= status.text
|