<!-- HTML to allow the user to export the current querey results in full or
the selected sub results.-->

<div class="col s12 m2 l2" id="export">
  <h6 style="margin-top: 0px;">Export</h6>
  <div class="divider" style="margin-bottom: 10px;"></div>
  <div class="row">
    <div class="col s12">
      <button class="waves-effect
              waves-light
              btn-flat
              disabled
              flat-interaction"
              type="submit"
              id="results-create">Create Results
        <i class="material-icons left">build</i>
      </button>
      <button id="query-results-export"
              class="waves-effect
              waves-light
              btn-flat
              hide
              flat-interaction"
              type="submit">Results
        <i class="material-icons left">file_download</i>
      </button>
    </div>
    <div class="col s12">
      <button class="waves-effect
              waves-light
              btn-flat
              hide
              disabled
              flat-interaction"
              type="submit"
              id="sub-results-create">Create Sub-Results
        <i class="material-icons left">build</i>
      </button>
      <button id="sub-results-export"
              class="waves-effect
              waves-light
              btn-flat
              hide
              flat-interaction"
              type="submit">Sub-Results
        <i class="material-icons left">file_download</i>
      </button>
    </div>
  </div>
</div>