First commit

This commit is contained in:
Theodotos Andreou 2018-01-14 13:10:16 +00:00
commit c6e2478c40
13918 changed files with 2303184 additions and 0 deletions

View file

@ -0,0 +1,32 @@
<!--
Controller: EditMailingCtrl
Required vars: mailing, crmMailingConst
-->
<div class="crm-block" ng-form="subform" crm-ui-id-scope>
<div class="crm-group" ng-controller="EmailBodyCtrl">
<div crm-ui-field="{name: 'subform.header_id', title: ts('Mailing Header'), help: hs('header')}">
<select
crm-ui-id="subform.header_id"
name="header_id"
ui-jq="select2"
ui-options="{dropdownAutoWidth : true, allowClear: true}"
ng-change="checkTokens(mailing, '*')"
ng-model="mailing.header_id"
ng-options="mc.id as mc.name for mc in crmMailingConst.headerfooterList | filter:{component_type: 'Header'} | orderBy:'name'">
<option value=""></option>
</select>
</div>
<div crm-ui-field="{name: 'subform.footer_id', title: ts('Mailing Footer'), help: hs('footer')}">
<select
crm-ui-id="subform.footer_id"
name="footer_id"
ui-jq="select2"
ui-options="{dropdownAutoWidth : true, allowClear: true}"
ng-change="checkTokens(mailing, '*')"
ng-model="mailing.footer_id"
ng-options="mc.id as mc.name for mc in crmMailingConst.headerfooterList | filter:{component_type: 'Footer'} | orderBy:'name'">
<option value=""></option>
</select>
</div>
</div>
</div>