0

In administrate if I have a model called parentequipmenttype how to I customize the Navigation link to display as "Parent Equipment Type" instead of listing as parentequipmenttype?

spacerobot
  • 265
  • 1
  • 5
  • 23

1 Answers1

0

You will need to customize app/dashboards/parentequipmenttype_dashboard.rb file.

require "administrate/custom_dashboard"

class ParentequipmenttypeDashboard < Administrate::CustomDashboard
  resource "Parent Equipment Type"
end
Remy Wang
  • 666
  • 6
  • 26