Departments

<% if current_user&.admin? %> <%= link_to 'New Department', new_department_path, class: 'btn btn-success' %> <% end %>
<% if flash[:notice] %>
<%= flash[:notice] %>
<% end %>
<% if @departments.empty? %>

No departments found.

<% else %> <% @departments.each do |department| %>

<%= link_to department.name, department_path(department) %>

<% if current_user&.admin? %> <%= link_to 'Edit', edit_department_path(department), class: 'btn-mini' %> <% end %>

<%= department.description&.truncate(100) || "No description provided." %>

Users <%= department.user_count %>
Tasks <%= department.task_count %>
Open <%= department.incomplete_task_count %>
<% end %> <% end %>