Sha256: 7a4810d597759d7a925668182071596057efc274362702b74de2725f2b88b47c
Contents?: true
Size: 551 Bytes
Versions: 4
Compression:
Stored size: 551 Bytes
Contents
<p style="color: green"><%= notice %></p> <h1>Employee roles</h1> <div id="employee_roles"> <table> <thead> <tr> <th>Employee</th> <th>Role</th> </tr> </thead> <tbody> <% @employee_roles.each do |employee_role| %> <tr> <td><%= employee_role.employee&.name %></td> <td><%= employee_role.role&.name %></td> <td><%= link_to "Show", employee_role %></td> </tr> <% end %> </tbody> </table> </div> <%= link_to "New employee role", new_employee_role_path %>
Version data entries
4 entries across 4 versions & 1 rubygems