##// END OF EJS Templates
* news rss feed added...
* news rss feed added * "header_tags" block added to allow inclusion of page specific tags in the html header (stylesheets, javascripts, feeds...) git-svn-id: http://redmine.rubyforge.org/svn/trunk@121 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r104:6c8e1514aa0c
r118:58f8a23d58c5
Show More
edit.rhtml
48 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>
<p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}) %></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
improved issues change history...
r52 <p><%= f.text_area :description, :cols => 60, :rows => [[10, @issue.description.length / 50].max, 100].min, :required => true %></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
tables and forms redesign,...
r19 <p><%= f.select :fixed_version_id, (@project.versions.collect {|v| [v.name, v.id]}), { :include_blank => true } %>
</select></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
* new report: project activity...
r42 <% unless $RDM_TEXTILE_DISABLED %>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@38 e93f8b46-1217-0410-a6f0-8f06a7374b81
r36 <%= javascript_include_tag 'jstoolbar' %>
<script type="text/javascript">
//<![CDATA[
if (document.getElementById) {
if (document.getElementById('issue_description')) {
var commentTb = new jsToolBar(document.getElementById('issue_description'));
commentTb.draw();
}
}
//]]>
Jean-Philippe Lang
* new report: project activity...
r42 </script>
<% end %>