still figuring out git
[custlog.git] / app / views / entries / new.html.erb
blobb88cef67512721b5e198ef817c8f9534d5183e78
1 <h2>New entry</h2>
3 <%= error_messages_for :entry %>
5 <% form_for(@entry) do |f| %>
6   <p>
7     <b>Complaint</b><br />
8     <%= f.text_area :complaint %>
9   </p>
11   <p>
12     <b>Resolution</b><br />
13     <%= f.text_area :resolution %>
14   </p>
16   <p>
17     <%= f.submit "Create" %>
18   </p>
19 <% end %>
21 <%= link_to 'Back', entries_path %>