diff app/views/pastes/new.html.erb @ 398:851432f21603

Nope, failing at redesigning.
author nanaya <me@myconan.net>
date Sun, 06 Sep 2015 03:52:52 +0900
parents app/views/pastes/_form.html.erb@26f8c634052c
children a18e19139f57
line wrap: on
line diff
--- a/app/views/pastes/new.html.erb	Sat Jun 27 14:46:01 2015 +0900
+++ b/app/views/pastes/new.html.erb	Sun Sep 06 03:52:52 2015 +0900
@@ -1,3 +1,38 @@
-<% provide :title, 'New Paste' %>
+<% provide :title, t(".title") %>
+<%= form_for @paste do |f| %>
+  <%= render "shared/filter_spam" %>
+
+  <div class="form-group <%= error_class f.object, :paste %>">
+    <%= f.text_area :paste, :autofocus => true, :class => "form-control paste-paste js-paste-paste", :rows => 20 %>
+  </div>
+
+  <div class="form-horizontal">
+    <div class="form-group <%= error_class f.object, :key %>">
+      <%= f.label :key, t(".deletion_key"), :class => "col-sm-2 control-label" %>
+      <div class="col-sm-3">
+        <%= f.text_field :key, :class => "form-control" %>
+      </div>
+    </div>
+
+    <div class="form-group">
+      <label class="control-label col-sm-2"><%= t(".privacy.label") %></label>
 
-<%= render 'form' %>
+      <div class="col-sm-10">
+        <% paste_privacy_options.each do |label, value| %>
+          <div class="radio">
+            <label>
+              <%= f.radio_button :is_private, value %>
+              <%= t(".privacy.#{label}") %>
+            </label>
+          </div>
+        <% end %>
+      </div>
+    </div>
+
+    <div class="form-group"><div class="col-sm-offset-2 col-sm-10">
+      <%= f.button :class => "btn btn-primary" %>
+
+      <%= link_to t(".clear"), "#", :class => "btn btn-danger js-paste-clear" %>
+    </div></div>
+  </div>
+<% end %>