bluelemons/diputados

View on GitHub
app/views/backend/notas/_nota.html.erb

Summary

Maintainability
Test Coverage
<table>
  <tbody>
    <tr>
      <td>
        <b><%= resource_class.human_attribute_name(:numero) %>:</b>
        <%= @nota.numero %>
      </td>
    </tr>
    <tr>
      <td>
        <b>Tipo de iniciador:</b>
        <%= @nota.organization %>
      </td>
    </tr>
    <tr>
      <td>
        <b><%= resource_class.human_attribute_name(:autor) %>:</b>
        <%= @nota.initiator %>
      </td>
    </tr>
    <tr>
      <td>
        <b><%= resource_class.human_attribute_name(:tag).pluralize %>:</b>
        <%= @tags.join(", ") %>
      </td>
    </tr>
  </tbody>
</table>