mirror of
https://codeberg.org/artfulrobot/contactcats.git
synced 2025-06-26 16:47:17 +02:00
Create Category search display
This commit is contained in:
parent
016ca2a735
commit
b9de61f9f7
7 changed files with 185 additions and 0 deletions
|
@ -0,0 +1,18 @@
|
|||
<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>
|
||||
|
|
@ -0,0 +1 @@
|
|||
hello
|
Loading…
Add table
Add a link
Reference in a new issue