diff --git a/app/views/employers/index.html.erb b/app/views/employers/index.html.erb index adc2cd2..b2742d7 100644 --- a/app/views/employers/index.html.erb +++ b/app/views/employers/index.html.erb @@ -2,11 +2,13 @@
Name | Address | @@ -25,9 +27,15 @@<%= employer.email %> | <%= employer.dob.strftime('%B %d, %Y') if employer.dob %> | - <%= link_to 'Show', employer, class: 'btn btn-sm btn-info' %> - <%= link_to 'Edit', edit_employer_path(employer), class: 'btn btn-sm btn-warning' %> - | + <%= link_to employer, class: 'btn btn-sm btn-secondary' do %> + + <% end %> + + + <%= link_to edit_employer_path(employer), class: 'btn btn-sm btn-info' do %> + + <% end %> +
+
+
<%= link_to edit_participant_path(participant), class: 'btn btn-sm btn-info' do %>
<% end %>
diff --git a/app/views/vendors/index.html.erb b/app/views/vendors/index.html.erb
index 6f109b6..24dac43 100644
--- a/app/views/vendors/index.html.erb
+++ b/app/views/vendors/index.html.erb
@@ -2,11 +2,11 @@
Vendors
- <%= link_to 'New Vendor', new_vendor_path, class: 'btn btn-success mb-3' %>
+ <%= link_to 'New Vendor', new_vendor_path, class: 'btn btn-dark mb-3' %>
Workers
- <%= link_to 'New Worker', new_worker_path, class: 'btn btn-success mb-3' %>
+ <%= link_to 'New Worker', new_worker_path, class: 'btn btn-dark mb-3' %>
|
---|