Eve-Reactions-Calculator/views/comp.hbs

32 lines
996 B
Handlebars

<div class="container">
<div class="row mt-5">
<div class="btn-group">
<button class="btn btn-secondary btn-sm dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Skill 5
</button>
</div>
<table class="table">
<thead>
<th scope="col">Reaction</th>
<th scope="col">Chain ?</th>
<th scope="col">Inputs</th>
<th scope="col">Output</th>
<th scope="col">Profit</th>
<th scope="col">% prof</th>
</thead>
<tbody>
{{#table}}
<tr class="text-white {{#if pos}}bg-success{{/if}}{{#if neg}}bg-danger{{/if}}">
<td>{{name}}</td>
<td>{{chain}}</td>
<td>{{i}}</td>
<td>{{o}}</td>
<td>{{prof}}</td>
<td>{{per}}</td>
</tr>
{{/table}}
</tbody>
</table>
</div>
</div>