Sha256: 2c2ff783b03cac9abc8ee21947c2e91db7b5150abe30405ad522f7ef2fa49400
Contents?: true
Size: 444 Bytes
Versions: 7
Compression:
Stored size: 444 Bytes
Contents
<h1>Perfis</h1> <div class="actions"> <%= link_to "Novo Perfil", new_role_path %> </div> <table> <thead> <tr> <th>Nome</th> <th>Ativo</th> <th></th> </tr> </thead> <tbody> <% @roles.each do |role| %> <tr> <td><%= link_to role.name, role %></td> <td><%= role.active %></td> <td><%= link_to "Editar", edit_role_path(role) %></td> </tr> <% end %> </tbody> </table>
Version data entries
7 entries across 7 versions & 1 rubygems