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.
|
|
{{#if user_id}}
|
|
|
<tr class="js-user-table-item" id="row_user_{{ user_id }}" data-id="{{ user_id }}">
|
|
|
<td>{{ user_name }}</td>
|
|
|
<td>
|
|
|
<a class="js-edit-user link-icon" data-id="{{ user_id }}">
|
|
|
<i class="fa fa-pencil"></i>
|
|
|
</a>
|
|
|
<a class="js-delete-user link-icon" data-id="{{ user_id }}">
|
|
|
<i class="fa fa-trash"></i>
|
|
|
</a>
|
|
|
</td>
|
|
|
</tr>
|
|
|
{{else}}
|
|
|
<tr class="js-user-table-item" id="row_no_data">
|
|
|
<td colspan="2" >{{ i18n.callflows.callcenter.thereIsCurrentlyNoUser }}</td>
|
|
|
</tr>
|
|
|
{{/if}}
|