CRM-14481 - crmCaseType - First pass at Angular-based case-type screen (view-only)
[civicrm-core.git] / partials / crmCaseType / pipelineTable.html
1 <!--
2 Controller: CaseTypeCtrl
3 Required vars: activitySet
4 -->
5 <table>
6 <thead>
7 <tr>
8 <th>Activity Type</th>
9 <th></th>
10 </tr>
11 </thead>
12
13 <tbody>
14 <tr ng-repeat="activity in activitySet.activityTypes">
15 <td>{{ activity.name }}</td>
16 <td>
17 <a class="ui-icon ui-icon-trash" title="Remove"
18 ng-click="removeItem(activitySet.activityTypes, activity)"></a>
19 </td>
20 </tr>
21 </tbody>
22 </table>