<% unique_id = "Chart#{rand(10000..99999)}" %> <% if people_not_started_yet.count > 0 %>

Future Start Dates in the <%= department %>

The following people in the <%= department %> have not started yet. They are counted towards today on the chart above.

<% people_not_started_yet.each do |person| %> <% end %>
Name Role Start Date
<%= person.name %> <%= person.role %> <%= person.start_date %>
<% end %> <% if vacancies_overdue.count > 0 %>

<%= department %> Vacancies Overdue

The following <%= department %> vacancies are overdue to be filled. They are counted toward today on the chart above.

<% vacancies_overdue.each do |vacancy| %> <% end %>
Role Start Date
<%= vacancy.role %> <%= vacancy.start_date %>
<% end %>