##// END OF EJS Templates
Adds a view for editing all trackers fields....
Adds a view for editing all trackers fields. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10283 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9848:ff68fff80ed1
r10100:3a32edc3bd10
Show More
_edit.html.erb
44 lines | 2.0 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">
<% if @edit_allowed || !@allowed_statuses.empty? %>
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>
<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %>
<%= wikitoolbar_for 'notes' %>
Eric Davis
Added :view_issues_edit_notes_bottom hook...
r2085 <%= call_hook(:view_issues_edit_notes_bottom, { :issue => @issue, :notes => @notes, :form => f }) %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/issues/_edit.html.erb...
r7124
Jean-Philippe Lang
Better handling of attachments when issue validation fails (#10253)....
r8771 <p><%=l(:label_attachment_plural)%><br /><%= 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
Merged IssuesController #edit and #update into a single actions....
r1115 <% end %>
<div id="preview" class="wiki"></div>