Sha256: 9ed44e1fb883bd4db6e9c7455b8ef6ff53f2f1ed3386b21c46d2bfdf221ebf57
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
<p id="notice"><%= notice %></p> <h1>Banal Employees</h1> <table class="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> <% @banal_employees.each do |banal_employee| %> <tr id="banal-employee-<%= banal_employee.id %>"> <td><%= banal_employee.Facebook %></td> <td><%= banal_employee.Linkedin %></td> <td><%= banal_employee.Role %></td> <td><%= banal_employee.e_mail %></td> <td><%= banal_employee.Mobile %></td> <td><%= banal_employee.Address %></td> <td><%= banal_employee.Country %></td> <td><%= banal_employee.Full_Name %></td> <td><%= banal_employee.Last_Name_2 %></td> <td><%= banal_employee.Last_Name_1 %></td> <td><%= banal_employee.Middle_Name %></td> <td><%= banal_employee.First_Name %></td> <td><%= link_to 'Show', banal_employee %></td> <td><%= link_to 'Edit', edit_banal_employee_path(banal_employee) %></td> <td><%= link_to 'Destroy', banal_employee, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Banal Employee', new_banal_employee_path %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ezii-os-2.0.1 | app/views/banal/employees/index.html.erb |