Mercurial > zeropaste
annotate app/views/pastes/_form.html.erb @ 180:dd5a154c17c7
Extracted txt result template to helper.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Fri, 01 Feb 2013 22:57:49 +0700 |
parents | 8ef70e8c239d |
children | b4b7a29b70f6 |
rev | line source |
---|---|
2 | 1 <%= form_for(@paste) do |f| %> |
2 <% if @paste.errors.any? %> | |
56
8ef70e8c239d
Bootstrap-styled error message.
Edho Arief <edho@myconan.net>
parents:
39
diff
changeset
|
3 <div class="alert alert-error" id="error_explanation"> |
8ef70e8c239d
Bootstrap-styled error message.
Edho Arief <edho@myconan.net>
parents:
39
diff
changeset
|
4 <h5><%= pluralize(@paste.errors.count, "error") %> prohibited this paste from being saved:</h5> |
2 | 5 |
6 <ul> | |
7 <% @paste.errors.full_messages.each do |msg| %> | |
8 <li><%= msg %></li> | |
9 <% end %> | |
10 </ul> | |
11 </div> | |
12 <% end %> | |
13 | |
14 <div class="field"> | |
35 | 15 <%= f.text_area :paste, :class => 'span12', :rows => 10 %> |
2 | 16 </div> |
29 | 17 <div class="form-actions"> |
18 <%= f.submit :class => 'btn btn-primary' %> | |
39 | 19 <%= link_to 'Clear', root_path, :class => 'btn', :id => 'reset_paste' %> |
2 | 20 </div> |
21 <% end %> |