Api's added, preview added
[civicrm-core.git] / partials / abtesting / list.html
1 <!--
2 Controller: CaseTypeListsCtrl
3 Required vars: caseTypes
4 -->
5 <div id="help">
6 A/B Testing
7 </div>
8
9 <table class="display">
10 <thead>
11 <tr>
12 <th>Title</th>
13 <th>Id</th>
14 <th></th>
15
16 <th></th>
17 </tr>
18 </thead>
19 <tbody>
20 <tr ng-repeat="ab in abmailList">
21 <td>{{ab.name}}</td>
22 <td>{{ab.id}}</td>
23 <td><a class="action-item crm-hover-button" ng-href="#/mailing/abtesting/{{ab.id}}">Edit</a>&nbsp
24 <a class="action-item crm-hover-button" ng-href="#/mailing/abtesting/report/{{ab.id}}">Results</a></td>
25
26 </tr>
27 </tbody>
28 </table>
29
30 <div class="crm-submit-buttons">
31 <a ng-href="#/mailing/abtesting/new" class="button"><span><div class="icon add-icon"></div>New A/B Test</span></a>
32 </div>