<div class="row">
  <div class="col-md-12">
    {{#link-to 'ratings.criar' class='btn btn-default'}}
      Criar Avaliação
    {{/link-to}}
  </div>
</div>
<table class="table">
  <caption>Avaliações</caption>
  <thead>
    <tr>
      <th>Id</th>
      <th>Conteúdo</th>
      <th>Vocabulário</th>
      <th>Ativo?</th>
      <th>#</th>
    </tr>
  </thead>
  <tbody>
	{{#each rm in ratingmanagers}}
    <tr>
      <th scope="row">{{rm.id}}</th>
      <td>{{#if rm.modelName}}{{rm.modelName}}{{else}}-{{/if}}</td>
      <td>{{rm.vocabulary.id}} - {{rm.vocabulary.name}}</td>
      <td>{{rm.active}}</td>
      <td>
        {{#link-to 'ratings.editar' rm.id class="btn btn-default"}}
          Editar
        {{/link-to}}
      </td>
    </tr>
	{{/each}}
  </tbody>
</table>