2007-05-05 17:22:27 +04:00
|
|
|
<%= error_messages_for 'relation' %>
|
|
|
|
|
|
|
|
<p><%= f.select :relation_type, collection_for_relation_type_select, {}, :onchange => "setPredecessorFieldsVisibility();" %>
|
2010-12-12 19:04:28 +03:00
|
|
|
<%= l(:label_issue) %> #<%= f.text_field :issue_to_id, :size => 10 %>
|
2007-05-05 17:22:27 +04:00
|
|
|
<span id="predecessor_fields" style="display:none;">
|
|
|
|
<%= l(:field_delay) %>: <%= f.text_field :delay, :size => 3 %> <%= l(:label_day_plural) %>
|
|
|
|
</span>
|
2007-09-22 17:17:49 +04:00
|
|
|
<%= submit_tag l(:button_add) %>
|
2012-09-20 20:59:37 +04:00
|
|
|
<%= link_to_function l(:button_cancel), '$("#new-relation-form").hide();'%>
|
2007-09-22 17:17:49 +04:00
|
|
|
</p>
|
2007-05-05 17:22:27 +04:00
|
|
|
|
2012-08-09 20:43:12 +04:00
|
|
|
<%= javascript_tag "observeAutocompleteField('relation_issue_to_id', '#{escape_javascript auto_complete_issues_path(:project_id => @project, :scope => (Setting.cross_project_issue_relations? ? 'all' : nil))}')" %>
|
2012-01-08 21:34:06 +04:00
|
|
|
|
2007-05-05 17:22:27 +04:00
|
|
|
<%= javascript_tag "setPredecessorFieldsVisibility();" %>
|