summaryrefslogtreecommitdiff
path: root/www/crm/wp-content/plugins/civicrm/civicrm/ang/crmCaseType/statusTable.html
diff options
context:
space:
mode:
Diffstat (limited to 'www/crm/wp-content/plugins/civicrm/civicrm/ang/crmCaseType/statusTable.html')
-rw-r--r--www/crm/wp-content/plugins/civicrm/civicrm/ang/crmCaseType/statusTable.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/www/crm/wp-content/plugins/civicrm/civicrm/ang/crmCaseType/statusTable.html b/www/crm/wp-content/plugins/civicrm/civicrm/ang/crmCaseType/statusTable.html
new file mode 100644
index 00000000..890989a3
--- /dev/null
+++ b/www/crm/wp-content/plugins/civicrm/civicrm/ang/crmCaseType/statusTable.html
@@ -0,0 +1,35 @@
+<!--
+Controller: CaseTypeCtrl
+Required vars: selectedStatuses
+-->
+<table>
+ <thead>
+ <tr>
+ <th></th>
+ <th>{{ts('Name')}}</th>
+ <th>{{ts('Class')}}</th>
+ </tr>
+ </thead>
+
+ <tbody ng-model="selectedStatuses">
+ <tr ng-repeat="(status,sel) in selectedStatuses">
+ <td>
+ <input class="crm-form-checkbox" type="checkbox" ng-model="selectedStatuses[status]"/>
+ </td>
+ <td>
+ {{ caseStatuses[status].label }}
+ </td>
+ <td>
+ {{ caseStatuses[status].grouping }}
+ </td>
+ </tr>
+ </tbody>
+
+ <tfoot>
+ <tr>
+ <td></td>
+ <td><a class="crm-hover-button action-item" ng-click="newStatus()" href><i class="crm-i fa-plus"></i> {{ ts('New Status') }}</a></td>
+ <td></td>
+ </tr>
+ </tfoot>
+</table>