| @ -1,30 +1,41 @@ | |||
| <div> | |||
| <div class="dialog_popup"> | |||
| <h1>{{ i18n.callflows.callcenter.connect_caller_to_queue }}</h1> | |||
| <form name="form" method="post" action="#"> | |||
| <div class="form_content"> | |||
| <div class="popup_field"> | |||
| <label for="queue_selector">{{ i18n.callflows.callcenter.queue }}</label> | |||
| <div class="select_wrapper"> | |||
| <select id="queue_selector"> | |||
| {{#select objects.selected}} | |||
| {{#each objects.items}} | |||
| <option value="{{id}}">{{name}}</option> | |||
| {{/each}} | |||
| {{/select}} | |||
| </select> | |||
| <div class="action_links_div"> | |||
| <div id="edit_link"> | |||
| <a class="inline_action" data-action="edit" href="javascript:void(0);">{{ i18n.callflows.callcenter.queue_edit_options }}</a> | |||
| </div> | |||
| <div><a class="inline_action" data-action="create" href="#">{{ i18n.callflows.callcenter.createQueue }}</a></div> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| </form> | |||
| <div class="buttons-center"> | |||
| <button id="add" class="monster-button monster-button-primary">OK</button> | |||
| </div> | |||
| </div> | |||
| <div class="dialog_popup callflows-port queue-callflow-dialog"> | |||
| <h3>{{ i18n.callflows.callcenter.connect_caller_to_queue }}</h3> | |||
| <form name="form" method="post" action="#"> | |||
| <div class="form_content"> | |||
| <div class="popup_field clear"> | |||
| <label for="queue_selector">{{ i18n.callflows.callcenter.queue }}</label> | |||
| <div class="field_wrapper"> | |||
| <select id="queue_selector"> | |||
| {{#select objects.selected}} | |||
| {{#each objects.items}} | |||
| <option value="{{id}}">{{name}}</option> | |||
| {{/each}} | |||
| {{/select}} | |||
| </select> | |||
| <div class="action_links_div"> | |||
| <div id="edit_link"> | |||
| <a class="inline_action" data-action="edit" href="javascript:void(0);">{{ i18n.callflows.callcenter.queue_edit_options }}</a> | |||
| </div> | |||
| <div><a class="inline_action" data-action="create" href="#">{{ i18n.callflows.callcenter.createQueue }}</a></div> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| <div class="popup_field clear"> | |||
| <label for="queue_priority"> | |||
| {{ i18n.callflows.callcenter.priority }} | |||
| <i class="help-popover fa fa-question-circle" | |||
| data-original-title="{{ i18n.callflows.callcenter.priority_tooltip}}" | |||
| data-placement="right" | |||
| data-toggle="tooltip"></i> | |||
| </label> | |||
| <div class="field_wrapper"> | |||
| <input name="priority" type="number" value="{{ objects.priority }}" id="queue_priority"/> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| </form> | |||
| <div class="buttons-center"> | |||
| <button id="add" class="monster-button monster-button-primary">OK</button> | |||
| </div> | |||
| </div> | |||