File: //home/arjun/projects/buyercall/buyercall/assets/components/inbound/templates/notifications.tpl
<label class="feature-info-label"> Want to receive an email notification for all your calls?</label>
<div class="row">
<div class="col-sm-12 radio notify-button-padding">
<label for="notify-all-leads" class="toggle-field-step"><%= __('Send notification for all missed and answered calls') %>
<input type="radio" name="notify-leads" id="notify-all-leads" value="all" <% if (notifyLeads === 'all') { %>checked<% } %> />
</label>
</div>
</div>
<div class="row">
<div class="col-md-6 togglebutton">
<label for="notify-all-me" class="toggle-field-step"><%= __('Send to me') %>
(<%- currentUserEmail %>)
<input type="checkbox" id="notify-all-me" <% if (notifyAllMe) { %>checked<% } %> />
</label>
</div>
<div class="col-md-6 togglebutton" id="all-routing-agents">
<label for="notify-all-agents" class="toggle-field-step"><%= __('All default routing agents') %>
<input type="checkbox" id="notify-all-agents" <% if (notifyAllAgents) {%>checked<% } %> />
</label>
</div>
<div class="col-sm-12">
<div class="form-group col-md-10 padding-left-custom-notify">
<label for="notify-all-custom"><%= __('Send to custom recipients (Separate emails addresses with , or ;):') %></label>
<textarea id="notify-all-custom" class="form-control" placeholder="E.g. email@email.com; another@email.com"><%- notifyAllCustom %></textarea>
</div>
</div>
</div>
<label class="feature-info-label"> Want to receive email notifications only for missed calls?</label>
<div class="row">
<div class="col-md-12 radio notify-button-padding">
<label for="notify-missed-leads" class="toggle-field-step"><%= __('Send notification for just missed calls') %>
<input type="radio" name="notify-leads" id="notify-missed-leads" value="missed" <% if (notifyLeads === 'missed') { %>checked<% } %> />
</label>
</div>
</div>
<div class="row">
<div class="col-md-6 togglebutton">
<label for="notify-missed-me" class="toggle-field-step"><%= __('Send to me') %> (<%- currentUserEmail %>)
<input type="checkbox" id="notify-missed-me" <% if (notifyMissedMe) { %>checked<% } %> disabled />
</label>
</div>
<div class="col-md-6 togglebutton" id="missed-routing-agents">
<label for="notify-missed-agents" class="toggle-field-step"><%= __('All default routing agents') %>
<input type="checkbox" id="notify-missed-agents" <% if (notifyMissedAgents) { %>checked<% } %> disabled />
</label>
</div>
<div class="col-sm-12">
<div class="form-group col-md-10 padding-left-custom-notify">
<label for="notify-missed-custom"><%= __('Send to custom recipients (Separate emails addresses with , or ;):') %></label>
<textarea id="notify-missed-custom" class="form-control" placeholder="E.g. email@email.com; another@email.com"><%- notifyMissedCustom %></textarea>
</div>
</div>
</div>
<div class="row" id="adf-notification-section">
<div class="col-sm-12">
<div class="form-group">
<div class="col-md-12 togglebutton notify-button-padding">
<label for="notify-adf" class="toggle-field-step"><%= __('Receive a CRM email in ADF format') %>
<input type="checkbox" name="notify-leads" id="notify-adf" <% if (notifyAdf) { %>checked<% } %> />
</label>
</div>
</div>
</div>
<div class="col-sm-12">
<div class="form-group">
<label for="notify-adf-custom"><%= __('Your CRM ADF email address') %></label>
<textarea id="notify-adf-custom" class="form-control" disabled
placeholder="E.g. email@email.com; another@email.com"><%- notifyAdfCustom %>
</textarea>
</div>
</div>
</div>