Sha256: 66ee63cc4b2111620900133437b421389ec7706134374bde50718215399db28c

Contents?: true

Size: 1.25 KB

Versions: 1

Compression:

Stored size: 1.25 KB

Contents

<script type="text/ng-template" id="applicants_search.html">
  <h2>SEARCH RESULTS</h2>
  <table class="table table-striped table-bordered table-hover table-condensed">
    <thead>
      <tr>
        <th>#</th>
        <th>State</th>
        <th>Email</th>
        <th>Notes</th>
        <th>Transitions</th>
        <th>Video</th>
      </tr>
    </thead>
    <tbody>
      <tr ng-repeat="applicant in applicants">
        <td>{{applicant.id}}</td>
        <td>{{applicant.state}}</td>
        <td>{{applicant.email}}</td>
        <td>{{applicant.notes}}</td>
        <td>
          <div ng-show='applicant.reviewable_at' class='label label-inverse'>Reviewable: {{applicant.reviewable_at}}</div>
          <div ng-show='applicant.problem_at' class='label label-warning'>Problem: {{applicant.problem_at}}</div>
          <div ng-show='applicant.rejected_at' class='label label-important'>Rejected: {{applicant.rejected_at}}</div>
          <div ng-show='applicant.approved_at' class='label label-success'>Approved: {{applicant.approved_at}}</div>
        </td>
        <td>
          <a ng-show="applicant.video_url" href="#reviews/{{applicant.id}}" class='btn btn-success'><i class='icon icon-facetime-video'></i></a>
        </td>
      </tr>
    </tbody>
  </table>
</script>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
applicants-0.11.0 app/views/applicants/spike/js_templates/applicants/_search.html