diff --git a/app/helpers/admin_dashboard_cards_helper.rb b/app/helpers/admin_dashboard_cards_helper.rb index 1af615d6c..e2d1c4c92 100644 --- a/app/helpers/admin_dashboard_cards_helper.rb +++ b/app/helpers/admin_dashboard_cards_helper.rb @@ -25,7 +25,7 @@ def user_content_cards [ custom_card("Activity logs", dashboard_recent_activities_path, icon: "🧭"), custom_card("Bookmarks tally", tally_bookmarks_path, icon: "🔖"), - model_card(:event_registrations, icon: "🎟️", intensity: 100, title: "Event Registrations"), + model_card(:event_registrations, icon: "🎟️", intensity: 100), model_card(:quotes, icon: "💬", intensity: 100), model_card(:story_ideas, icon: "✍️", intensity: 100), custom_card("Tags", tags_path, icon: "🏷️", color: :lime, intensity: 100), @@ -40,10 +40,10 @@ def user_content_cards # ----------------------------- def reference_cards [ - custom_card("Categories", authenticated_root_path, icon: "🗂️"), - custom_card("Sectors", authenticated_root_path, icon: "🏭"), - custom_card("Project Statuses", authenticated_root_path, icon: "🧮"), - custom_card("Windows Types", windows_types_path, icon: "🪟"), + custom_card("Categories", authenticated_root_path, icon: "🗂️", color: :lime, intensity: 100), + custom_card("Service populations", authenticated_root_path, icon: "🏭", color: :lime, intensity: 100), + custom_card("Project statuses", authenticated_root_path, icon: "🧮", color: :emerald, intensity: 100), + custom_card("Windows types", windows_types_path, icon: "🪟"), ] end diff --git a/app/views/dashboard/admin.html.erb b/app/views/dashboard/admin.html.erb index db12fcc90..b6cfbded8 100644 --- a/app/views/dashboard/admin.html.erb +++ b/app/views/dashboard/admin.html.erb @@ -1,6 +1,6 @@
-

Admin Dashboard

+

Admin Dashboard

diff --git a/db/seeds.rb b/db/seeds.rb index 77a0238e7..af6844c22 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -50,7 +50,7 @@ ["AgeRange", "3-5"], ["AgeRange", "6-12"], ["AgeRange", "Teen"], - ["AgeRange", "Adult"], + ["AgeRange", "18+"], ["AgeRange", "Mixed-age groups"], ["AgeRange", "Family Windows"], # ["ArtType", "Boxes", 1], diff --git a/lib/domain_theme.rb b/lib/domain_theme.rb index 669c2382a..a9af8ae8b 100644 --- a/lib/domain_theme.rb +++ b/lib/domain_theme.rb @@ -22,6 +22,9 @@ module DomainTheme story_ideas: :rose, event_registrations: :blue, + banners: :stone, + users: :stone, + admin_only: :blue, user_only: :green }