Sha256: 614eae60fa2ac93e3d810cec3ea946c3aa00462ade0f37f9f905b4dbcde38593
Contents?: true
Size: 774 Bytes
Versions: 4
Compression:
Stored size: 774 Bytes
Contents
<p style="color: green"><%= notice %></p> <h1>Employees</h1> <div id="employees"> <table> <thead> <tr> <th>First Name</th> <th>Last Name</th> <th>Address</th> <th>Email</th> <th>Password</th> <th>Company</th> </tr> </thead> <tbody> <% @employees.each do |employee| %> <tr> <td><%= employee.first_name %></td> <td><%= employee.last_name %></td> <td><%= employee.address %></td> <td><%= employee.email %></td> <td><%= employee.password %></td> <td><%= employee.company&.name %></td> <td><%= link_to "Show", employee %></td> </tr> <% end %> </tbody> </table> </div> <%= link_to "New employee", new_employee_path %>
Version data entries
4 entries across 4 versions & 1 rubygems