##// END OF EJS Templates
code layout clean up app/views/issues/_attributes.html.erb...
Toshi MARUYAMA -
r11593:8a87ff96f99e
parent child
Show More
@@ -47,11 +47,19
47 <% end %>
47 <% end %>
48
48
49 <% if @issue.safe_attribute? 'start_date' %>
49 <% if @issue.safe_attribute? 'start_date' %>
50 <p><%= f.text_field :start_date, :size => 10, :disabled => !@issue.leaf?, :required => @issue.required_attribute?('start_date') %><%= calendar_for('issue_start_date') if @issue.leaf? %></p>
50 <p>
51 <%= f.text_field(:start_date, :size => 10, :disabled => !@issue.leaf?,
52 :required => @issue.required_attribute?('start_date')) %>
53 <%= calendar_for('issue_start_date') if @issue.leaf? %>
54 </p>
51 <% end %>
55 <% end %>
52
56
53 <% if @issue.safe_attribute? 'due_date' %>
57 <% if @issue.safe_attribute? 'due_date' %>
54 <p><%= f.text_field :due_date, :size => 10, :disabled => !@issue.leaf?, :required => @issue.required_attribute?('due_date') %><%= calendar_for('issue_due_date') if @issue.leaf? %></p>
58 <p>
59 <%= f.text_field(:due_date, :size => 10, :disabled => !@issue.leaf?,
60 :required => @issue.required_attribute?('due_date')) %>
61 <%= calendar_for('issue_due_date') if @issue.leaf? %>
62 </p>
55 <% end %>
63 <% end %>
56
64
57 <% if @issue.safe_attribute? 'estimated_hours' %>
65 <% if @issue.safe_attribute? 'estimated_hours' %>
General Comments 0
You need to be logged in to leave comments. Login now