]> source.dussan.org Git - redmine.git/commitdiff
Reindent code in documents/_form view (#36686).
authorMarius Balteanu <marius.balteanu@zitec.com>
Sat, 19 Mar 2022 08:07:32 +0000 (08:07 +0000)
committerMarius Balteanu <marius.balteanu@zitec.com>
Sat, 19 Mar 2022 08:07:32 +0000 (08:07 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@21465 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/documents/_form.html.erb

index 45b63611f7c12199a1053bbe9739d88d2e18a439..ba783deb7d4e5a29990b2272fdc34e1a6bc5da90 100644 (file)
@@ -1,23 +1,22 @@
 <%= error_messages_for @document %>
 
 <div class="box tabular">
-<p><%= f.select :category_id, DocumentCategory.active.collect {|c| [c.name, c.id]} %></p>
-<p><%= f.text_field :title, :required => true, :size => 60 %></p>
-<p><%= f.text_area :description, :cols => 60, :rows => 15, :class => 'wiki-edit',
-                  :data => {
-                      :auto_complete => true
-                  }
-%></p>
+  <p><%= f.select :category_id, DocumentCategory.active.collect {|c| [c.name, c.id]} %></p>
+  <p><%= f.text_field :title, :required => true, :size => 60 %></p>
+  <p><%= f.text_area :description, :cols => 60, :rows => 15, :class => 'wiki-edit',
+                    :data => {
+                        :auto_complete => true
+                    } %></p>
 
-<% @document.custom_field_values.each do |value| %>
-  <p><%= custom_field_tag_with_label :document, value %></p>
-<% end %>
+  <% @document.custom_field_values.each do |value| %>
+    <p><%= custom_field_tag_with_label :document, value %></p>
+  <% end %>
 </div>
 
 <%= wikitoolbar_for 'document_description' %>
 
 <% if @document.new_record? %>
-<div class="box tabular">
-<p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form', :locals => {:container => @document} %></p>
-</div>
+  <div class="box tabular">
+    <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form', :locals => {:container => @document} %></p>
+  </div>
 <% end %>