Sha256: 431a1779cb6964230a76639483e32891af80f02a34ddb61eda870423f040b77e
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
<p id="notice"><%= notice %></p> <h1>Employees</h1> <table> <thead> <tr> <th>Facebook</th> <th>Linkedin</th> <th>Role</th> <th>E mail</th> <th>Mobile</th> <th>Address</th> <th>Country</th> <th>Full name</th> <th>Last name 2</th> <th>Last name 1</th> <th>Middle name</th> <th>First name</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @employees.each do |employee| %> <tr> <td><%= employee.Facebook %></td> <td><%= employee.Linkedin %></td> <td><%= employee.Role %></td> <td><%= employee.e_mail %></td> <td><%= employee.Mobile %></td> <td><%= employee.Address %></td> <td><%= employee.Country %></td> <td><%= employee.Full_Name %></td> <td><%= employee.Last_Name_2 %></td> <td><%= employee.Last_Name_1 %></td> <td><%= employee.Middle_Name %></td> <td><%= employee.First_Name %></td> <td><%= link_to 'Show', employee %></td> <td><%= link_to 'Edit', edit_employee_path(employee) %></td> <td><%= link_to 'Destroy', employee, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Employee', new_employee_path %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ezii-os-2.0.1 | app/views/employees/index.html.erb |