blob: ce8d0971cf39fa598899f1d56fd5511c890a4ea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<div class='container'>
<div class='row'><h2>Workbench</h2></div>
<div class='row'>
<div class='col-6'>
<canvas id="draw-canvas-2" class="w-100"></canvas>
</div>
<div class="col-6">
<table class="table table-striped">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Property</th>
<th scope="col">Value</th>
<th scope="col">Reference</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Exact M.W.</td>
<td id="exactmw">-</td>
<td>-</td>
</tr>
<tr>
<th scope="row">2</th>
<td>CrippenMR</td>
<td id='CrippenMR'>-</td>
<td>-</td>
</tr>
<tr>
<th scope="row">3</th>
<td>CrippenClogP</td>
<td id='CrippenClogP'>-</td>
<td>-</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
|