APTrust/dart

View on GitHub
plugins/repository/aptrust/work_items.html

Summary

Maintainability
Test Coverage
<table class="table table-hover">
  <thead class="thead-inverse">
    <tr>
      <th>Name</th>
      <th>Action</th>
      <th>Status</th>
    </tr>
  </thead>
  <tbody>
    {{#each items}}
    <tr class="repository-clickable-row" data-url="{{ this.url }}"
        data-toggle="popover"
        data-content="<p>Size: {{ this.size }}</p><p>Etag: {{ this.etag }}</p><p>Updated: {{ this.updated_at }}</p><p>Note: {{ this.escaped_note }}</p>">
      <td>{{ this.name }}</td>
      <td>{{ this.action }}</td>
      <td>{{ this.status }}</td>
    </tr>
    {{/each }}
  </tbody>
</table>