(NFC) Fix possible flacky tests by splitting the parts of the checksum up so that...
[civicrm-core.git] / ang / crmDashboard / Dashlet.html
CommitLineData
f263929f
CW
1<div class="crm-dashlet-header" ng-if="!$ctrl.isFullscreen">
2 <a href class="crm-i fa-times" title="{{:: ts('Remove from dashboard') }}" aria-hidden="true" ng-click="$ctrl.remove()"></a>
3 <a href class="crm-i fa-expand" title="{{:: ts('View fullscreen') }}" aria-hidden="true" ng-click="$ctrl.fullscreen()"></a>
4 <a href class="crm-i fa-refresh" title="{{:: ts('Refresh') }}" aria-hidden="true" ng-click="$ctrl.forceRefresh()"></a>
5 <a href class="crm-dashlet-collapse crm-i fa-caret-{{ $ctrl.collapsed ? 'right' : 'down' }}" title="{{ $ctrl.collapsed ? ts('Expand') : ts('Collapse') }}" aria-hidden="true" ng-click="$ctrl.toggleCollapse()"></a>
6 <h3>{{ $ctrl.dashlet.label }}</h3>
7</div>
8<div class="crm-dashlet-content" ng-show="!$ctrl.collapsed">
9 <div ng-if="$ctrl.dashlet.directive" ng-include="'~/crmDashboard/directives/' + $ctrl.dashlet.directive + '.html'"></div>
10</div>