Departments
<% if flash[:notice] %>
<%= flash[:notice] %>
<% end %>
<% if @departments.empty? %>
No departments found.
<% else %>
<% @departments.each do |department| %>
<%= link_to department.name, department_path(department) %>
<%= department.description %>
Users: <%= department.user_count %>
Tasks: <%= department.task_count %>
Open: <%= department.incomplete_task_count %>
<% end %>
<% end %>
<% if current_user&.admin? %>
<%= link_to 'New Department', new_department_path, class: 'action-btn primary' %>
<% end %>