zeninstall/src/autogen/app/views/scripts/_script_raw.html.erb

15 lines
573 B
Plaintext

<tr>
<td><%= script.name %></td>
<td><%= script.stage %></td>
<td><%= script.lang %></td>
<td>
<div class="buttons has-addons">
<%= button_to "View", script_path(script), method: :get, class: "button is-small is-success"%>
<%= button_to "Edit", edit_script_path(script), method: :get, class: "button is-small is-primary" %>
<% if ! script.lock %>
<%= button_to "Delete", script_path(script), method: :delete, class: "button is-small is-danger" %>
<% end %>
</div>
</td>
</tr>