84 lines
2.9 KiB
Handlebars
84 lines
2.9 KiB
Handlebars
{{#d-modal-body id="chat_integration_edit_rule_modal" title="chat_integration.edit_rule_modal.title"}}
|
|
<div>
|
|
<form>
|
|
<table>
|
|
|
|
<tr class="input">
|
|
<td class="label"><label for='provider'>{{i18n "chat_integration.edit_rule_modal.provider"}}</label></td>
|
|
<td>
|
|
{{i18n (concat 'chat_integration.provider.' model.provider '.title')}}
|
|
</td>
|
|
</tr>
|
|
<tr class="instructions">
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
|
|
<tr class="input">
|
|
<td class="label"><label for='channel'>{{i18n "chat_integration.edit_rule_modal.channel"}}</label></td>
|
|
<td>
|
|
{{text-field
|
|
name="channel"
|
|
value=model.channel
|
|
autofocus="autofocus"
|
|
id="channel-field"}}
|
|
</td>
|
|
</tr>
|
|
<tr class="instructions">
|
|
<td></td>
|
|
<td><label>{{i18n (concat 'chat_integration.provider.' model.provider '.channel_instructions')}}</label></td>
|
|
</tr>
|
|
|
|
<tr class="input">
|
|
<td class="label"><label for='filter'>{{i18n "chat_integration.edit_rule_modal.filter"}}</label></td>
|
|
<td>
|
|
{{combo-box name="filter" content=model.available_filters value=model.filter}}
|
|
</td>
|
|
</tr>
|
|
<tr class="instructions">
|
|
<td></td>
|
|
<td><label>{{i18n 'chat_integration.edit_rule_modal.instructions.filter'}}</label></td>
|
|
</tr>
|
|
|
|
<tr class="input">
|
|
<td class="label"><label for='category'>{{i18n "chat_integration.edit_rule_modal.category"}}</label></td>
|
|
<td>
|
|
{{category-chooser
|
|
name="category"
|
|
value=model.category_id
|
|
rootNoneLabel="chat_integration.all_categories"
|
|
rootNone=true
|
|
overrideWidths=false
|
|
}}
|
|
</td>
|
|
</tr>
|
|
<tr class="instructions">
|
|
<td></td>
|
|
<td><label>{{i18n 'chat_integration.edit_rule_modal.instructions.category'}}</label></td>
|
|
</tr>
|
|
|
|
{{#if siteSettings.tagging_enabled}}
|
|
<tr class="input">
|
|
<td class="label"><label for='tags'>{{i18n "chat_integration.edit_rule_modal.tags"}}</label></td>
|
|
<td>
|
|
{{tag-chooser placeholderKey="chat_integration.all_tags" name="tags" tags=model.tags}}
|
|
</td>
|
|
</tr>
|
|
<tr class="instructions">
|
|
<td></td>
|
|
<td><label>{{i18n 'chat_integration.edit_rule_modal.instructions.tags'}}</label></td>
|
|
</tr>
|
|
{{/if}}
|
|
|
|
</table>
|
|
|
|
</form>
|
|
</div>
|
|
{{/d-modal-body}}
|
|
|
|
<div class="modal-footer">
|
|
{{d-button class='btn-primary btn-large' action="save" title="chat_integration.edit_rule_modal.save" label="chat_integration.edit_rule_modal.save"}}
|
|
|
|
{{d-button class="btn-large" action="cancel" title="chat_integration.edit_rule_modal.cancel" label="chat_integration.edit_rule_modal.cancel"}}
|
|
|
|
</div> |