WebRTC audio/video call and conferencing server.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
1.5 KiB

<div default-dialog>
<div class="row head">
<div class="col-xs-12">
<p ng-if="contacts.length === 0">
{{_('You have no contacts.')}}
</p>
<p>{{_('To add new contacts, join a room and create a contact add request by clicking on the star icon next to a user entry.')}}</p>
</div>
</div>
<div class="row" ng-if="contacts.length > 0">
<div class="col-xs-12">
<div class="editlist nicescroll row">
<table class="table table-hover table-condensed">
<tbody>
<tr ng-repeat="contact in contacts">
<td class="picture buddy">
<div class="buddyPicture"><i class="fa fa-user"/><img ng-show="contact.Status.buddyPicture" alt ng-src="{{contact.Status.buddyPicture}}"/></div>
</td>
<td class="name">
<span>{{contact.Userid|displayName}}</span>
</td>
<td class="action">
<div class="btn-group buddyactions">
<button class="btn btn-primary" ng-click="doCall(contact)" title="{{_('Start video call')}}"><i class="fa fa-phone"></i></button>
<button class="btn btn-primary" ng-click="startChat(contact)" title="{{_('Start chat')}}"><i class="fa fa-comments-o"></i></button>
</div>
<button class="btn btn-primary" ng-click="openContactsManagerEdit(contact)" title="{{_('Edit contact')}}">{{_('Edit')}}</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>