EvoBal/app/views/operations/_operation.html.erb

18 lines
427 B
Plaintext
Raw Normal View History

<div id="<%= dom_id operation %>" class="flex flex-cols">
<div class="flex-auto text-left">
<strong class="pr-1">Enabled:</strong>
<%= operation.enabled %>
</div>
<div class="flex-auto text-left">
<strong class="pr-1">Class name:</strong>
<%= operation.class_name %>
</div>
<div class="flex-auto text-left">
<strong class="pr-1">Argument:</strong>
<%= operation.argument %>
</div>
</div>