summaryrefslogtreecommitdiff
path: root/www/crm/wp-content/plugins/civicrm/civicrm/ang/crmCaseType/statusTable.html
diff options
context:
space:
mode:
authorYaco <franco@reevo.org>2020-06-04 11:01:00 -0300
committerYaco <franco@reevo.org>2020-06-04 11:01:00 -0300
commitfc7369835258467bf97eb64f184b93691f9a9fd5 (patch)
treedaabd60089d2dd76d9f5fb416b005fbe159c799d /www/crm/wp-content/plugins/civicrm/civicrm/ang/crmCaseType/statusTable.html
first commit
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>