SmartIT_Extensions/BMC/smart-it-full/views/create/custom-add-user-dropdown.html

21 lines
1.1 KiB
HTML

<div class="create-new-customer__popup" ng-if="match.model.isEmptyResult" >
<a ng-click="createCustomer();">{{ (match.model.isCreateContactAction ? 'create.contact.action.label' : 'smartrecorder.createNewCustomer') | i18n }}</a>
</div>
<a ng-if="!match.model.isEmptyResult" class="full-width" aria-label="{{match.model.fullName}}">
<div class="create-ticket__popup-item">
<div class="smart-recorder__popup-item-img">
<img alt="{{match.model.fullName}}" class="feed-item__avatar" imgplaceholder="user"
user-availability="match.model" thumbnail-img="{{'data:' + match.model.thumbnailMime + ';base64,' + match.model.thumbnail}}"/>
</div>
<div class="smart-recorder__popup-item-col2">
<p class="pull-right">{{match.model.company.name}}</p>
</div>
<div class="smart-recorder__popup-item-col1 create-ticket__popup-item-col1">
<p class="smart-recorder__popup-item-highlight">{{match.model.fullName}}
<span ng-if="match.model.profileStatus === 'Offline'">{{'(' + match.model.profileStatus + ')'}}</span>
</p>
<p class="smart-recorder__popup-item-email">{{match.model.email}}</p>
</div>
</div>
</a>