Employers working - onboarding to card print
CI / scan_ruby (push) Failing after 10m41s
CI / lint (push) Failing after 7m31s
CI / test (push) Failing after 8m29s
Docker / build-and-test-image (push) Failing after 11m32s

This commit is contained in:
Jason Jordan
2026-01-15 11:37:50 -05:00
parent 0464ba8929
commit 4fac3b1036
108 changed files with 4113 additions and 431 deletions
+21
View File
@@ -0,0 +1,21 @@
<div class="bg-deepcove h-full w-full flex flex-col justify-start">
<h1 class="font-bold text-4xl text-platinum my-5">Employers</h1>
<% plan_colors = EmployerSetupPlansForm::PLAN_COLORS.push('copper', 'bronze').shuffle %>
<h2 class="font-bold text-3xl text-platinum my-5">In Process:</h2>
<% @employers.inactive.each_with_index do |es, index| %>
<% item_color_index = index == 0 ? 0 : index % plan_colors.length %>
<div class="w-1/2 flex text-2xl text-platinum font-bold px-4 py-4 ml-10 rounded-lg border-l-5 border-b-2 <%= "border-#{plan_colors[item_color_index]}" %>">
<%= link_to es.name, employer_path(es.slug), class: "hover:text-atmosphere" %>
</div>
<% end %>
<div class="w-1/2 flex text-2xl text-limegreen font-bold px-4 py-4 ml-10 rounded-lg border-l-5 border-b-2 border-platinum">
<%= link_to "New Employer", new_employer_path, class: "hover:text-verdigris" %>
</div>
<h2 class="font-bold text-3xl text-platinum my-5">Live:</h2>
<% @employers.active.each_with_index do |es, index| %>
<% item_color_index = index == 0 ? 0 : index % plan_colors.length %>
<div class="w-1/2 flex text-2xl text-platinum font-bold px-4 py-4 ml-10 rounded-lg border-l-5 border-b-2 <%= "border-#{plan_colors[item_color_index]}" %>">
<%= link_to es.name, employer_path(es.slug), class: "hover:text-atmosphere" %>
</div>
<% end %>
</div>