+ ${
+ this._config.title
+ ? html`
+
${this._config.title}
+ `
+ : ""
+ }
+
+ ${
+ this._entitiesDialog!.map((entityConf) =>
+ this.renderEntity(entityConf, true)
+ )
+ }
+
+
+ ${
+ this._entitiesToggle!.map((entityConf) =>
+ this.renderEntity(entityConf, false)
+ )
+ }
+
+
+