sudara/alonetone

View on GitHub
app/views/groups/new.html.erb

Summary

Maintainability
Test Coverage
<h1>New group</h1>

<%= form_for(@group) do |f| %>
  <%= f.error_messages %>
    name: <%= f.text_field :name %>
    description: <%= f.text_field :description %>
  <p>
    <%= f.submit 'Create' %>
  </p>
<% end %>

<%= link_to 'Back', groups_path %>