##// END OF EJS Templates
Applied 'register notice' patch by Matt Jones....
Applied 'register notice' patch by Matt Jones. The user is now redirected to the login screen after having registered. git-svn-id: http://redmine.rubyforge.org/svn/trunk@601 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r545:70374d084e19
r598:acebceb1d74b
Show More
edit.rhtml
42 lines | 1.8 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
xss in issue subject on issues/edit...
r104 <h2><%= @issue.tracker.name %> #<%= @issue.id %> - <%=h @issue.subject %></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
tables and forms redesign,...
r19 <% labelled_tabular_form_for :issue, @issue, :url => {:action => 'edit'} do |f| %>
<%= error_messages_for 'issue' %>
Jean-Philippe Lang
0.3 unstable...
r10 <div class="box">
Jean-Philippe Lang
tables and forms redesign,...
r19 <!--[form:issue]-->
Jean-Philippe Lang
* new report: project activity...
r42 <div class="splitcontentleft">
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label><%=l(:field_status)%></label> <%= @issue.status.name %></p>
<p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></p>
<p><%= f.select :assigned_to_id, (@issue.project.members.collect {|m| [m.name, m.user_id]}), :include_blank => true %></p>
Jean-Philippe Lang
fixed #9374 Edit issue doesn't have blank category...
r345 <p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %></p>
Jean-Philippe Lang
* new report: project activity...
r42 </div>
<div class="splitcontentright">
<p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p>
<p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p>
<p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
</div>
<div class="clear">
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.text_field :subject, :size => 80, :required => true %></p>
Jean-Philippe Lang
width of all wiki content textareas set to 99.5%...
r326 <p><%= f.text_area :description, :required => true, :cols => 60, :rows => [[10, @issue.description.length / 50].max, 100].min, :class => 'wiki-edit' %></p>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12
Jean-Philippe Lang
custom field tags...
r18 <% for @custom_value in @custom_values %>
<p><%= custom_field_tag_with_label @custom_value %></p>
Jean-Philippe Lang
tables and forms redesign,...
r19 <% end %>
Jean-Philippe Lang
0.3 unstable...
r10
Jean-Philippe Lang
removed a non matching closing select tag...
r354 <p><%= f.select :fixed_version_id, (@project.versions.collect {|v| [v.name, v.id]}), { :include_blank => true } %></p>
Jean-Philippe Lang
* new report: project activity...
r42 </div>
Jean-Philippe Lang
tables and forms redesign,...
r19 <!--[eoform:issue]-->
Jean-Philippe Lang
0.3 unstable...
r10 </div>
Jean-Philippe Lang
data locking for issues...
r21 <%= f.hidden_field :lock_version %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <%= submit_tag l(:button_save) %>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@38 e93f8b46-1217-0410-a6f0-8f06a7374b81
r36 <% end %>
Jean-Philippe Lang
Slight views refactoring...
r545 <%= wikitoolbar_for 'issue_description' %>
Jean-Philippe Lang
calendar javascripts and stylesheets removed from base layout. they're now only added to html header when needed....
r148
<% content_for :header_tags do %>
<%= javascript_include_tag 'calendar/calendar' %>
<%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
<%= javascript_include_tag 'calendar/calendar-setup' %>
<%= stylesheet_link_tag 'calendar' %>
Jean-Philippe Lang
* new report: project activity...
r42 <% end %>