Mercurial > zeropaste
annotate app/views/pastes/_form.html.erb @ 298:ff27821f9272
A test! Can you imagine that?!
author | edogawaconan <me@myconan.net> |
---|---|
date | Wed, 12 Feb 2014 15:10:42 +0900 |
parents | dff632a63ada |
children | 5ca896a5ddef |
rev | line source |
---|---|
260 | 1 <%= form_for @paste do |f| %> |
2 <div class="form-group"> | |
3 <%= f.text_area :paste, :rows => 10, :class => "form-control" %> | |
2 | 4 </div> |
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
56
diff
changeset
|
5 |
260 | 6 <div class="form-group"> |
7 <%= f.label :key, "Deletion key", class: "control-label" %> | |
8 <div class="row"><div class="col-sm-3"> | |
9 <%= f.text_field :key, :class => "form-control" %> | |
10 </div></div> | |
2 | 11 </div> |
297 | 12 <%= render 'shared/filter_spam' %> |
260 | 13 <div class="checkbox"> |
14 <%= f.label :is_private do %> | |
15 <%= f.check_box :is_private %> | |
16 Private | |
17 <% end %> | |
18 </div> | |
19 <%= f.submit :class => 'btn btn-primary' %> | |
20 <%= link_to 'Clear', root_path, :class => 'btn btn-danger', :id => 'reset_paste' %> | |
2 | 21 <% end %> |