<li class="topcoat-list__item">
  {{#if this.single }}
  <label class="topcoat-radio-button haptic">
    <input type="radio" id="row-{{ this.id }}" value="{{ this.value }}" name="sel">
    <div class="topcoat-radio-button__checkmark"></div>
  {{else}}
  <label class="topcoat-checkbox haptic">
    <input type="checkbox" id="row-{{ this.id }}" value="{{ this.value }}">
    <div class="topcoat-checkbox__checkmark"></div>
  {{/if}}
    <span class="topcoat-label">{{ this.description }}</span>
    {{#if this.notification }}
    <span class="topcoat-notification">{{ this.notification }}</span>
    {{/if}}
  </label>
</li>