summaryrefslogtreecommitdiff
path: root/www/crm/wp-content/plugins/civicrm/civicrm/ang/crmMailing/BlockRecipients.html
blob: cedfa6dc2441b837b65f597b3ef97e93cda064eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div ng-controller="EditRecipCtrl" class="crm-mailing-recipients-row">
  <input
    type="hidden"
    crm-mailing-recipients
    ng-model="mailing.recipients"
    crm-mandatory-groups="crmMailingConst.groupNames | filter:{is_hidden:1}"
    crm-ui-id="{{crmMailingBlockRecipients.id}}"
    name="{{crmMailingBlockRecipients.name}}"
    ng-required="true" />
    <a crm-icon="fa-wrench" ng-click="editOptions(mailing)" class="crm-hover-button" title="{{ts('Edit Recipient Options')}}"></a>
    <div ng-style="{display: permitRecipientRebuild ? '' : 'inline-block'}">
      <button ng-click="rebuildRecipients()" ng-show="permitRecipientRebuild" class="crm-button" title="{{ts('Click to refresh recipient count')}}">{{getRecipientsEstimate()}}</button>
      <a ng-click="previewRecipients()" class="crm-hover-button" title="{{ts('Preview a List of Recipients')}}" style="font-weight: bold;">{{getRecipientCount()}}</a>
    </div>
</div>