Mercurial > hg > soundsoftware-site
diff .svn/pristine/a3/a3d7c35759f83e88ae49f41feed90857719a03ad.svn-base @ 909:cbb26bc654de redmine-1.3
Update to Redmine 1.3-stable branch (Redmine SVN rev 8964)
author | Chris Cannam |
---|---|
date | Fri, 24 Feb 2012 19:09:32 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.svn/pristine/a3/a3d7c35759f83e88ae49f41feed90857719a03ad.svn-base Fri Feb 24 19:09:32 2012 +0000 @@ -0,0 +1,37 @@ +<div class="contextual"> +<% if User.current.allowed_to?(:manage_issue_relations, @project) %> + <%= toggle_link l(:button_add), 'new-relation-form', {:focus => 'relation_issue_to_id'} %> +<% end %> +</div> + +<p><strong><%=l(:label_related_issues)%></strong></p> + +<% if @relations.present? %> +<form> +<table class="list issues"> +<% @relations.each do |relation| %> +<tr class="issue hascontextmenu" id="relation-<%= relation.id %>"> +<td class="checkbox"><%= check_box_tag("ids[]", relation.other_issue(@issue).id, false, :id => nil) %></td> +<td class="subject"><%= l(relation.label_for(@issue)) %> <%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %> + <%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %> + <%= link_to_issue(relation.other_issue(@issue), :truncate => 60) %> +</td> +<td class="status"><%=h relation.other_issue(@issue).status.name %></td> +<td class="start_date"><%= format_date(relation.other_issue(@issue).start_date) %></td> +<td class="due_date"><%= format_date(relation.other_issue(@issue).due_date) %></td> +<td class="buttons"><%= link_to_remote(image_tag('link_break.png'), { :url => {:controller => 'issue_relations', :action => 'destroy', :id => relation}, + :method => :delete + }, :title => l(:label_relation_delete)) if authorize_for('issue_relations', 'destroy') %></td> +</tr> +<% end %> +</table> +</form> +<% end %> + +<% remote_form_for(:relation, @relation, + :url => {:controller => 'issue_relations', :action => 'create', :issue_id => @issue}, + :method => :post, + :complete => "Form.Element.focus('relation_issue_to_id');", + :html => {:id => 'new-relation-form', :style => (@relation ? '' : 'display: none;')}) do |f| %> +<%= render :partial => 'issue_relations/form', :locals => {:f => f}%> +<% end %>