Mercurial > zeropaste
annotate app/views/pastes/_form.html.erb @ 261:f057e8c78e50
Fix /show.
author | edogawaconan <me@myconan.net> |
---|---|
date | Tue, 15 Oct 2013 22:40:08 +0900 |
parents | c4aba8990c5e |
children | 6cca1ab53337 |
rev | line source |
---|---|
260 | 1 <%= form_for @paste do |f| %> |
2 | 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 | |
260 | 14 <div class="form-group"> |
15 <%= f.text_area :paste, :rows => 10, :class => "form-control" %> | |
2 | 16 </div> |
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
56
diff
changeset
|
17 |
260 | 18 <div class="form-group"> |
19 <%= f.label :key, "Deletion key", class: "control-label" %> | |
20 <div class="row"><div class="col-sm-3"> | |
21 <%= f.text_field :key, :class => "form-control" %> | |
22 </div></div> | |
2 | 23 </div> |
260 | 24 <div class="checkbox"> |
25 <%= f.label :is_private do %> | |
26 <%= f.check_box :is_private %> | |
27 Private | |
28 <% end %> | |
29 </div> | |
30 <%= f.submit :class => 'btn btn-primary' %> | |
31 <%= link_to 'Clear', root_path, :class => 'btn btn-danger', :id => 'reset_paste' %> | |
2 | 32 <% end %> |