+ ${this._configEntries?.map((entry) => {
+ const devices = this._getDevices(entry);
+ const services = this._getServices(entry);
+ const entities = this._getEntities(entry);
- ${content}
+ return html`
+
+
+

+
+
+ ${entry.localized_domain_name}
+
+
+ ${entry.localized_domain_name === entry.title
+ ? ""
+ : entry.title}
+
+ ${devices.length || services.length || entities.length
+ ? html`
+
+ ${devices.length
+ ? html`${this.hass.localize(
+ "ui.panel.config.integrations.config_entry.devices",
+ "count",
+ devices.length
+ )}${services.length ? "," : ""}`
+ : ""}
+ ${services.length
+ ? html`${this.hass.localize(
+ "ui.panel.config.integrations.config_entry.services",
+ "count",
+ services.length
+ )}`
+ : ""}
+ ${(devices.length || services.length) &&
+ entities.length
+ ? this.hass.localize("ui.common.and")
+ : ""}
+ ${entities.length
+ ? html`${this.hass.localize(
+ "ui.panel.config.integrations.config_entry.entities",
+ "count",
+ entities.length
+ )}`
+ : ""}
+
+ `
+ : ""}
+