2020-03-10 11:08:00 +01:00
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="{{t 'Close' }}"><span aria-hidden="true">×</span></button>
|
|
|
|
<h3 class="inline-block">{{t "Edit bot" }}</h3>
|
|
|
|
</div>
|
2018-05-15 15:30:13 +02:00
|
|
|
<form class="edit_bot_form form-horizontal" data-target="edit-bot" data-title="{{t 'Edit bot' }}" data-user-id="{{bot.user_id}}"
|
2018-04-05 08:38:46 +02:00
|
|
|
data-email="{{bot.email}}" data-type="{{bot.bot_type}}">
|
2018-02-07 10:34:52 +01:00
|
|
|
<div class="bot_edit_errors alert alert-error hide"></div>
|
2020-03-10 11:08:00 +01:00
|
|
|
<div class="edit_bot_form_container">
|
2018-02-07 10:34:52 +01:00
|
|
|
<div class="">
|
2020-03-10 11:08:00 +01:00
|
|
|
<label>{{t "Bot email" }}</label>
|
|
|
|
<div class="edit_bot_email">{{bot.email}}</div>
|
2018-02-07 10:34:52 +01:00
|
|
|
</div>
|
2020-03-10 11:08:00 +01:00
|
|
|
<div class="edit-bot-form-box">
|
|
|
|
<div class="edit-bot-owner">
|
2021-03-03 18:32:11 +01:00
|
|
|
<label for="bot_owner_select">{{t "Owner" }}</label>
|
2020-05-19 21:52:27 +02:00
|
|
|
{{> settings/dropdown_list_widget
|
|
|
|
widget_name="bot_owner"
|
|
|
|
list_placeholder=(t 'Filter users')
|
|
|
|
reset_button_text=(t '[Remove owner]')
|
2021-03-03 18:32:11 +01:00
|
|
|
label="" }}
|
2020-03-10 11:08:00 +01:00
|
|
|
</div>
|
2020-06-04 22:16:23 +02:00
|
|
|
<div class="">
|
|
|
|
<label for="edit_bot_name">{{t "Full name" }}</label>
|
|
|
|
<input id="edit_bot_name" type="text" name="bot_name" class="edit_bot_name required" value="{{bot.full_name}}" maxlength=50 />
|
|
|
|
<div><label for="edit_bot_name" generated="true" class="text-error"></label></div>
|
|
|
|
</div>
|
2020-03-10 11:08:00 +01:00
|
|
|
<div id="service_data">
|
|
|
|
</div>
|
|
|
|
<div class="avatar-section">
|
|
|
|
<label for="bot_avatar_file_input">Avatar</label>
|
|
|
|
<input type="file" name="bot_avatar_file_input" class="notvisible edit_bot_avatar_file_input" value="{{t 'Upload profile picture' }}" />
|
|
|
|
<div class="edit_bot_avatar_file"></div>
|
|
|
|
<button type="button" class="button white rounded edit_bot_avatar_upload_button">{{t "Choose avatar" }}</button>
|
|
|
|
<button type="button" class="button white rounded edit_bot_avatar_clear_button" style="display: none;">{{t "Clear profile picture" }}</button>
|
|
|
|
<div><label for="edit_bot_avatar_file" generated="true" class="edit_bot_avatar_error text-error"></label></div>
|
2018-02-07 15:58:53 +01:00
|
|
|
</div>
|
2018-02-07 10:34:52 +01:00
|
|
|
</div>
|
2020-03-10 11:08:00 +01:00
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div class="modal-footer">
|
2018-02-07 10:34:52 +01:00
|
|
|
<div class="edit_bot_spinner"></div>
|
2020-03-10 11:08:00 +01:00
|
|
|
<button class="button white rounded" type="button" data-dismiss="modal">{{t "Cancel" }}</button>
|
|
|
|
<input type="submit" class="button rounded sea-green edit_bot_button" value="{{t 'Save' }}" />
|
2018-02-07 10:34:52 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|