mirror of
https://github.com/ZwareBear/awx.git
synced 2026-05-05 16:01:50 -05:00
More Translations
This commit is contained in:
@@ -7,7 +7,8 @@ function atRowAction () {
|
||||
transclude: true,
|
||||
templateUrl,
|
||||
scope: {
|
||||
icon: '@'
|
||||
icon: '@',
|
||||
tooltip: '@'
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
<div class="at-RowAction"
|
||||
ng-class="{'at-RowAction--danger': (icon === 'fa-trash' || icon === 'fa-times')}">
|
||||
ng-class="{'at-RowAction--danger': (icon === 'fa-trash' || icon === 'fa-times')}"
|
||||
aw-tool-tip="{{tooltip}}"
|
||||
data-tip-watch="tooltip"
|
||||
data-placement="top">
|
||||
<i class="fa" ng-class="icon"></i>
|
||||
</div>
|
||||
|
||||
@@ -2,11 +2,15 @@
|
||||
ng-show="status || headerValue || value || valueBindHtml || (smartStatus && smartStatus.summary_fields.recent_jobs.length) || (tagValues && tagValues.length)">
|
||||
<div class="at-RowItem-status" ng-if="status">
|
||||
<a ng-if="headerLink" ng-href="{{ headerLink }}"
|
||||
aw-tool-tip="{{ statusTip }}" aw-tip-watch="statusTip"
|
||||
aw-tool-tip="{{ statusTip }}" data-tip-watch="statusTip"
|
||||
data-placement="top">
|
||||
<i class="fa icon-job-{{ status }}"></i>
|
||||
</a>
|
||||
<i ng-if="!headerLink" class="fa icon-job-{{ status }}"></i>
|
||||
<div ng-if="!headerLink"
|
||||
aw-tool-tip="{{ statusTip }}" data-tip-watch="statusTip"
|
||||
data-placement="top">
|
||||
<i class="fa icon-job-{{ status }}"></i>
|
||||
</div>
|
||||
</div>
|
||||
<div class="at-RowItem-header" ng-if="headerValue && headerLink">
|
||||
<a ng-href="{{ headerLink }}">{{ headerValue }}</a>
|
||||
|
||||
Reference in New Issue
Block a user