<%= @department.name %>
<%= @department.description %>
Department Statistics
Total Users: <%= @department.user_count %>
Total Tasks: <%= @department.task_count %>
Open Tasks: <%= @department.incomplete_task_count %>
Department Tasks
<% if @tasks.empty? %>
No tasks in this department yet.
<% else %>
<% @tasks.each do |task| %>
<%= render 'tasks/task', task: task %>
<% end %>
<% end %>
<%= link_to 'Back to All Departments', departments_path, class: 'action-btn secondary' %>
<% if current_user&.can_manage_department?(@department) %>
<%= link_to 'Edit Department', edit_department_path(@department), class: 'action-btn primary' %>
<% end %>