jamesrwhite/minicron

View on GitHub
server/lib/minicron/hub/views/hosts/delete.erb

Summary

Maintainability
Test Coverage
<header>
  <h2>Delete Host '<%= @host.name %>'?</h2>
</header>
<hr/>

<form class="form-horizontal" role="form" method="POST">
  <input type="submit" class="btn btn-danger" value="Delete Host"/>

  <% if flash[:error] %>
    <input name="force" type="submit" class="btn btn-danger" value="Force Delete Host"/>
  <% end %>

  <a href="<%= "#{route_prefix}/host/#{@host.id}" %>" class="btn btn-info">Cancel</a>
</form>