Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 lines
844 B

ActiveAdmin.register_page "Dashboard" do
menu priority: 1, label: proc { I18n.t("active_admin.dashboard") }
content title: proc { I18n.t("active_admin.dashboard") } do
columns do
column do
panel "Recent logs" do
table_for CaseLog.order(updated_at: :desc).limit(10) do
column :id
column :created_at
column :updated_at
column :status
column :tenant_code
column :postcode_full
end
end
end
column do
panel "Total logs in progress" do
para CaseLog.in_progress.size
end
panel "Total logs completed" do
para CaseLog.completed.size
end
panel "Total logs completed" do
pie_chart CaseLog.group(:status).size
end
end
end
end
end