mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-26 14:07:17 +02:00
18 lines
865 B
HTML
18 lines
865 B
HTML
<div class="crm-search-display crm-search-display-contact-cat">
|
|
<p>This is the crmSearchDisplayContactCat thing</p>
|
|
<div class="form-inline">
|
|
<div class="btn-group" ng-include="'~/crmSearchDisplay/SearchButton.html'" ></div>
|
|
<div class="form-group pull-right" ng-include="'~/crmSearchDisplay/toolbar.html'" ng-if="$ctrl.toolbar"></div>
|
|
</div>
|
|
<ol style="list-style: disc;">
|
|
<li ng-repeat="(rowIndex, row) in $ctrl.results" class="{{:: row.cssClass }}">
|
|
<span style="color:{{row.data['ContactCategory_ContactCategoryDefinition_category_definition_id_01.color']}};" >
|
|
<i class="crm-i {{row.data['ContactCategory_ContactCategoryDefinition_category_definition_id_01.icon']}}" ></i>
|
|
{{row.data['category_definition_id:label']}}
|
|
</span>
|
|
</li>
|
|
|
|
</ol>
|
|
<div ng-include="'~/crmSearchDisplay/Pager.html'"></div>
|
|
</div>
|
|
|