commented code, preview mailing
[civicrm-core.git] / partials / crmMailingType / headerandFooter.html
1 <!--
2 Controller: MailCtrl
3 Required vars: currentMailing and headerfooter
4 -->
5 <br>
6 <body>
7 <table>
8 <tr>
9 <td class="label">Mailing Header</td>
10 <td>
11 <select ng-model="currentMailing.header_id" ng-options="hf.id as hf.name for hf in headerfooter| filter:isHeader">
12 <option value="">-none-</option>
13 </select>
14 </td>
15 </tr>
16 <tr>
17 <td class="label">Mailing Footer</td>
18 <td>
19 <select ng-model="currentMailing.footer_id" ng-options="f.id as f.name for f in headerfooter| filter:isFooter">
20 <option value="">-none-</option>
21 </select>
22 </td>
23 </tr>
24 </table>
25 </body>