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.
 
 
 

42 lines
1.6 KiB

<div class="monster-feature-popup-container" data-feature="call_recording">
<div class="feature-popup-title">
<div class="feature-fa-wrapper">
<i class="{{group.extra.mapFeatures.call_recording.icon}}"></i>
</div>
{{ i18n.groups.callRecording.headline }}
<div class="switch">
{{#monsterSwitch}}
<input class="switch-state" type="checkbox" data-on="{{i18n.enabled}}" data-off="{{i18n.disabled}}"{{#if group.extra.mapFeatures.call_recording.active}} checked="checked"{{/if}}></input>
{{/monsterSwitch}}
</div>
</div>
<div class="content{{#unless group.extra.mapFeatures.call_recording.active}} disabled{{/unless}}">
<form id="call_recording_form">
<div>
<span>{{ i18n.groups.callRecording.urlLabel }}</span>
<input required name="url" type="url" placeholder="{{ i18n.groups.callRecording.urlPlaceholder }}" value="{{url}}">
</div>
<div>
<span>{{ i18n.groups.callRecording.formatLabel }}</span>
<select name="format" class="input-medium">
{{#select format}}
<option value="mp3">mp3</option>
<option value="wav">wav</option>
{{/select}}
</select>
</div>
<div>
<span>{{ i18n.groups.callRecording.timeLimitLabel }}</span>
<input required name="time_limit" type="text" class="input-small" value="{{#if timeLimit}}{{timeLimit}}{{else}}600{{/if}}">
</div>
</form>
</div>
<div class="actions clearfix">
<div class="pull-right">
<a class="cancel-link monster-link blue" href="javascript:void(0);">{{ i18n.cancel }}</a>
<button type="button" class="monster-button monster-button-success save">{{ i18n.saveChanges }}</button>
</div>
</div>
</div>