Shortcut to HA Settings on dashboard?

Hi everyone, I would like to add a button in the dashboard that opens the Entities tab in Settings > Devices & Services > Entities.
Does anyone know if this is possible?

Thanks!
R.

Absolutely!

I’m not at my PC right now so can’t post the yaml, but look at panel_custom


edit: Here you go…

- name: ha_entities
  sidebar_title: Entities
  sidebar_icon: mdi:cog-outline
  js_url: /api/hassio/app/entrypoint.js
  url_path: 'config/entities'
  embed_iframe: true
  #require_admin: true
  config:
    ingress: core_configurator
1 Like

Loving it, thank you very much @jchh !!

working perfectly for me on HA 2024.1.3

Screenshot 2024-01-18 at 17.17.21

…are you accessing HA though https or http?

i_frame does not work over https (I think).

OK, well just deleting the post makes me look like a madman chatting to myself. :cry:

I guess I need some help how to configure this end to end then?
Add the code to configuration.yaml, and then how to get it to show on dashboard?

Sorry, I was going to avoid being a noob and research more myself before noticing a response. Thanks.

1 Like

no worries being a noob, we were all that once and sometimes you don’t even know where to start

did you check this link I posted above?

The full script for you configuration is:

panel_custom:
  - name: ha_entities
    sidebar_title: Entities
    sidebar_icon: mdi:cog-outline
    js_url: /api/hassio/app/entrypoint.js
    url_path: 'config/entities'
    embed_iframe: true
    #require_admin: true
    config:
      ingress: core_configurator

and then restart HA.