##// END OF EJS Templates
Don't require category or target version when they are not available (#20583)....
Don't require category or target version when they are not available (#20583). git-svn-id: http://svn.redmine.org/redmine/trunk@14733 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13614:37aa01674039
r14351:68620da79ab5
Show More
_edit.html.erb
52 lines | 2.4 KiB | text/plain | TextLexer
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= labelled_form_for @issue, :html => {:id => 'issue-form', :multipart => true} do |f| %>
Jean-Philippe Lang
Merge issue and time entry validation error messages....
r3551 <%= error_messages_for 'issue', 'time_entry' %>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/_edit.html.erb...
r8670 <%= render :partial => 'conflict' if @conflict %>
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 <div class="box">
Jean-Philippe Lang
Added Issue#attributes_editable?...
r13614 <% if @issue.attributes_editable? %>
Jean-Philippe Lang
Removed the "more" link to edit additional properties of an issue (#7603)....
r7982 <fieldset class="tabular"><legend><%= l(:label_change_properties) %></legend>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/_edit.html.erb...
r8670 <div id="all_attributes">
Jean-Philippe Lang
Display issue form fields according to permissions....
r8107 <%= render :partial => 'form', :locals => {:f => f} %>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/_edit.html.erb...
r8670 </div>
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 </fieldset>
<% end %>
Jean-Philippe Lang
Fixed: log time form not displayed on issue edit with :log_time permission only (#9405)....
r7804 <% if User.current.allowed_to?(:log_time, @project) %>
Jean-Philippe Lang
Adds an optional description to attachments....
r1166 <fieldset class="tabular"><legend><%= l(:button_log_time) %></legend>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= labelled_fields_for :time_entry, @time_entry do |time_entry| %>
Jean-Philippe Lang
Fixed: Adding time when Updating a ticket is gone (closes #701)....
r1151 <div class="splitcontentleft">
<p><%= time_entry.text_field :hours, :size => 6, :label => :label_spent_time %> <%= l(:field_hours) %></p>
</div>
<div class="splitcontentright">
Jean-Philippe Lang
Addq "please select" to activity select box if no activity is set as default (#937)....
r1588 <p><%= time_entry.select :activity_id, activity_collection_for_select_options %></p>
Jean-Philippe Lang
Fixed: Adding time when Updating a ticket is gone (closes #701)....
r1151 </div>
Jean-Philippe Lang
Fixed: Update issue form: comment field from log time end out of screen (#1227)....
r1412 <p><%= time_entry.text_field :comments, :size => 60 %></p>
Jean-Philippe Lang
Adds custom fields on time entries (#772)....
r1672 <% @time_entry.custom_field_values.each do |value| %>
Toshi MARUYAMA
replace tabs to spaces at app/views/issues/_edit.html.erb...
r7125 <p><%= custom_field_tag_with_label :time_entry, value %></p>
Jean-Philippe Lang
Adds custom fields on time entries (#772)....
r1672 <% end %>
Jean-Philippe Lang
Fixed: Adding time when Updating a ticket is gone (closes #701)....
r1151 <% end %>
</fieldset>
<% end %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/issues/_edit.html.erb...
r7124
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 <fieldset><legend><%= l(:field_notes) %></legend>
Jean-Philippe Lang
Private issue notes (#1554)....
r10336 <%= f.text_area :notes, :cols => 60, :rows => 10, :class => 'wiki-edit', :no_label => true %>
<%= wikitoolbar_for 'issue_notes' %>
<% if @issue.safe_attribute? 'private_notes' %>
Jean-Philippe Lang
Fixed that the label element may contain at most one input....
r12096 <%= f.check_box :private_notes, :no_label => true %> <label for="issue_private_notes"><%= l(:field_private_notes) %></label>
Jean-Philippe Lang
Private issue notes (#1554)....
r10336 <% end %>
Eric Davis
Added :view_issues_edit_notes_bottom hook...
r2085 <%= call_hook(:view_issues_edit_notes_bottom, { :issue => @issue, :notes => @notes, :form => f }) %>
Jean-Philippe Lang
Private issue notes (#1554)....
r10336 </fieldset>
Toshi MARUYAMA
remove trailing white-spaces from app/views/issues/_edit.html.erb...
r7124
Jean-Philippe Lang
Private issue notes (#1554)....
r10336 <fieldset><legend><%= l(:label_attachment_plural) %></legend>
<p><%= render :partial => 'attachments/form', :locals => {:container => @issue} %></p>
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 </fieldset>
</div>
Toshi MARUYAMA
remove trailing white-spaces from app/views/issues/_edit.html.erb...
r7124
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 <%= f.hidden_field :lock_version %>
Jean-Philippe Lang
Better handling of issue update conflicts (#8691)....
r8654 <%= hidden_field_tag 'last_journal_id', params[:last_journal_id] || @issue.last_journal_id %>
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 <%= submit_tag l(:button_submit) %>
Jean-Philippe Lang
Adds a helper for preview links....
r9848 <%= preview_link preview_edit_issue_path(:project_id => @project, :id => @issue), 'issue-form' %>
Jean-Philippe Lang
Adds a Cancel button on issue edit view (#18051)....
r13095 | <%= link_to l(:button_cancel), {}, :onclick => "$('#update').hide(); return false;" %>
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 <% end %>
<div id="preview" class="wiki"></div>