2006-07-29 23:54:22 +04:00
|
|
|
<h2><%= @issue.tracker.name %> #<%= @issue.id %> - <%= @issue.subject %></h2>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-09-02 17:33:23 +04:00
|
|
|
<% labelled_tabular_form_for :issue, @issue, :url => {:action => 'edit'} do |f| %>
|
|
|
|
<%= error_messages_for 'issue' %>
|
2006-07-29 13:32:58 +04:00
|
|
|
<div class="box">
|
2006-09-02 17:33:23 +04:00
|
|
|
<!--[form:issue]-->
|
|
|
|
<p><label><%=l(:field_status)%></label> <%= @issue.status.name %></p>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-09-02 17:33:23 +04:00
|
|
|
<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>
|
|
|
|
<p><%= f.text_field :subject, :size => 80, :required => true %></p>
|
|
|
|
<p><%= f.text_area :description, :cols => 60, :rows => 10, :required => true %></p>
|
2006-10-14 11:44:00 +04:00
|
|
|
<p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p>
|
2006-07-29 23:54:22 +04:00
|
|
|
|
2006-07-31 23:52:08 +04:00
|
|
|
<% for @custom_value in @custom_values %>
|
|
|
|
<p><%= custom_field_tag_with_label @custom_value %></p>
|
2006-09-02 17:33:23 +04:00
|
|
|
<% end %>
|
2006-07-29 13:32:58 +04:00
|
|
|
|
2006-09-02 17:33:23 +04:00
|
|
|
<p><%= f.select :fixed_version_id, (@project.versions.collect {|v| [v.name, v.id]}), { :include_blank => true } %>
|
|
|
|
</select></p>
|
|
|
|
<!--[eoform:issue]-->
|
2006-07-29 13:32:58 +04:00
|
|
|
</div>
|
2006-09-09 20:07:02 +04:00
|
|
|
<%= f.hidden_field :lock_version %>
|
2006-07-29 23:54:22 +04:00
|
|
|
<%= submit_tag l(:button_save) %>
|
2006-11-05 19:49:27 +03:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= javascript_include_tag 'jstoolbar' %>
|
|
|
|
<script type="text/javascript">
|
|
|
|
//<![CDATA[
|
|
|
|
jsToolBar.prototype.base_url = 'http://callmepep.org';
|
|
|
|
jsToolBar.prototype.legend_msg = 'You can use the following shortcuts to format your text.';
|
|
|
|
jsToolBar.prototype.elements.strong.title = 'Strong emphasis';
|
|
|
|
jsToolBar.prototype.elements.em.title = 'Emphasis';
|
|
|
|
jsToolBar.prototype.elements.ins.title = 'Inserted';
|
|
|
|
jsToolBar.prototype.elements.del.title = 'Deleted';
|
|
|
|
jsToolBar.prototype.elements.quote.title = 'Inline quote';
|
|
|
|
jsToolBar.prototype.elements.code.title = 'Code';
|
|
|
|
jsToolBar.prototype.elements.br.title = 'Line break';
|
|
|
|
jsToolBar.prototype.elements.ul.title = 'Unordered list';
|
|
|
|
jsToolBar.prototype.elements.ol.title = 'Ordered list';
|
|
|
|
jsToolBar.prototype.elements.link.title = 'Link';
|
|
|
|
jsToolBar.prototype.elements.link.href_prompt = 'URL?';
|
|
|
|
jsToolBar.prototype.elements.link.hreflang_prompt = 'Language?';
|
|
|
|
|
|
|
|
if (document.getElementById) {
|
|
|
|
if (document.getElementById('issue_description')) {
|
|
|
|
var commentTb = new jsToolBar(document.getElementById('issue_description'));
|
|
|
|
commentTb.draw();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//]]>
|
|
|
|
</script>
|