repo.or.cz
/
custlog.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
still figuring out git
[custlog.git]
/
app
/
views
/
entries
/
new.html.erb
blob
b88cef67512721b5e198ef817c8f9534d5183e78
1
<h2>New entry</h2>
2
3
<%= error_messages_for :entry %>
4
5
<% form_for(@entry) do |f| %>
6
<p>
7
<b>Complaint</b><br />
8
<%= f.text_area :complaint %>
9
</p>
10
11
<p>
12
<b>Resolution</b><br />
13
<%= f.text_area :resolution %>
14
</p>
15
16
<p>
17
<%= f.submit "Create" %>
18
</p>
19
<% end %>
20
21
<%= link_to 'Back', entries_path %>