A simple way to manually build the dashboard to display the machine states is to go directly to dashboard \ state_dashboard.erb.
Between the tags
<div class = "gridster">
</div>
The machine's widget is defined by the following <li> tag:
<div data-id = "CNC_2" data-view = "State" > </ div>
CNC_* specifies the content that thewidget will display by its machine handle, in the example. State refers to the widget Other widgets may be used, however, we only configure State to natively use Cwork data. The use of other widgets, or the creation of new ones, requires prior to its use some creative work.
<li data-row = "1" data-col = "1" data-sizex = "4" data-sizey = "1" >
<div data-id = "CNC_1" data-view = "State" > </div>
</li>
<li data-row="1" data-col="1" data-sizex="4" data-sizey="1">
<div data-id="CNC_3" data-view="State" ></div>
</li>