indentation

pull/1186/head
Jens Ulferts 12 years ago
parent 171a3e3d2b
commit 8d7a37c41d
  1. 16
      app/views/issues/new.html.erb

@ -1,12 +1,20 @@
<h2><%=l(:label_issue_new)%></h2>
<% labelled_tabular_form_for :issue, @issue, :url => project_issues_path(@project),
:html => {:multipart => true, :id => 'issue-form', :class => 'tabular new-issue-form'} do |f| %>
<% labelled_tabular_form_for :issue,
@issue,
:url => project_issues_path(@project),
:html => { :multipart => true,
:id => 'issue-form',
:class => 'tabular new-issue-form' } do |f| %>
<%= error_messages_for 'issue' %>
<div class="box">
<%= render :partial => 'issues/form', :locals => {:f => f} %>
<%= send_notification_option %>
<%= render :partial => 'issues/form', :locals => {:f => f} %>
<%= send_notification_option %>
</div>
<%= submit_tag l(:button_create) %>
<%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
<%= link_to_remote l(:label_preview),

Loading…
Cancel
Save