I use something like this so that several users can see one information or another.
You can open several dashboards with the same Tab but different information
[{"id":"1c28f0b4.d543ff","type":"ui_template","z":"3923e77f.c8fa98","group":"51e32ed.b394cd","name":"","order":2,"width":"6","height":"7","format":"<!--div data-ng-init=\"send({payload:action()})\"></div-->\n\n<div > mi mensaje</div> \n<div ng-bind-html=\"msg.Date\"></div>\n<div ng-bind-html=\"msg.payload\"></div>\n<div ng-bind-html=\"msg.parameter\"></div>\n","storeOutMessages":true,"fwdInMessages":true,"templateScope":"local","x":580,"y":880,"wires":[[]]},{"id":"ff72f324.94dff","type":"ui_template","z":"3923e77f.c8fa98","group":"51e32ed.b394cd","name":"datepicker","order":1,"width":"0","height":"0","format":"\n\n<div id=\"PickerDate\" align=\"center\">\n\n <span id=\"TabulationSpace\"><strong> </strong></span>\n \n <span id=\"SelectDate\"><strong>Seleccionar fecha: </strong></span>\n \n <input type=\"date\" id=\"fecha\" onchange=\"DatePicker()\">\n \n <span id=\"TabulationSpace\"><strong> </strong></span>\n \n <md-button ng-click=\"send(action())\" id=\"actualizarTablero\" >\n Actualizar Tablero \n </md-button>\n</div>\n\n<script>\n\n \n n = new Date();\n y = n.getFullYear();\n m = n.getMonth() + 1;\n d = n.getDate();\n \n document.querySelector('input[type=\"date\"]').value = y+ \"-\" + m + \"-\" +d ;\n\n\n \n var date=document.querySelector('input[type=\"date\"]').value;\n \n function DatePicker(){\n var date = document.querySelector('input[type=\"date\"]').value;\n obj.Date = date;\n }\n var obj = {\"Date\":date};\n DatePicker();\n \n this.scope.action = function() { return obj; }\n</script>","storeOutMessages":true,"fwdInMessages":true,"templateScope":"local","x":130,"y":880,"wires":[["1c28f0b4.d543ff","ef0455d8.bb0038"]]},{"id":"ef0455d8.bb0038","type":"debug","z":"3923e77f.c8fa98","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","x":450,"y":920,"wires":[]},{"id":"51e32ed.b394cd","type":"ui_group","z":"","name":"Default","tab":"5dff7e29.bb9b2","disp":true,"width":"23","collapse":false},{"id":"5dff7e29.bb9b2","type":"ui_tab","z":"","name":"hometest","icon":"dashboard","disabled":false,"hidden":false}]
Based on this, I could do from panels to insert parameters
(I admit new tips)