diff options
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/_relations.rhtml | 22 | ||||
-rw-r--r-- | app/views/issues/show.rhtml | 6 |
2 files changed, 28 insertions, 0 deletions
diff --git a/app/views/issues/_relations.rhtml b/app/views/issues/_relations.rhtml new file mode 100644 index 000000000..f817d3851 --- /dev/null +++ b/app/views/issues/_relations.rhtml @@ -0,0 +1,22 @@ +<h3><%=l(:label_related_issues)%></h3> + +<table style="width:100%"> +<% @issue.relations.each do |relation| %> +<tr> +<td><%= l(relation.label_for(@issue)) %> <%= "(#{lwr(:actionview_datehelper_time_in_words_day, relation.delay)})" if relation.delay && relation.delay != 0 %> <%= link_to_issue relation.other_issue(@issue) %></td> +<td><%=h relation.other_issue(@issue).subject %></td> +<td><div class="square" style="background:#<%= relation.other_issue(@issue).status.html_color %>;"></div> <%= relation.other_issue(@issue).status.name %></td> +<td><%= format_date(relation.other_issue(@issue).start_date) %></td> +<td><%= format_date(relation.other_issue(@issue).due_date) %></td> +<td><%= link_to_remote image_tag('delete.png'), { :url => {:controller => 'issue_relations', :action => 'destroy', :issue_id => @issue, :id => relation}, + :method => :post + }, :title => l(:label_relation_delete) %></td> +</tr> +<% end %> +</table> + +<% if authorize_for('issue_relations', 'new') %> + <% remote_form_for(:relation, @relation, :url => {:controller => 'issue_relations', :action => 'new', :issue_id => @issue}, :method => :post) do |f| %> + <%= render :partial => 'issue_relations/form', :locals => {:f => f}%> + <% end %> +<% end %> diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index 2eb01f094..d7d9bcf6d 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -81,6 +81,12 @@ end %> </div> +<% if authorize_for('issue_relations', 'new') || @issue.relations.any? %> +<div id="relations" class="box"> +<%= render :partial => 'relations' %> +</div> +<% end %> + <div id="history" class="box"> <h3><%=l(:label_history)%> <% if @journals_count > @journals.length %>(<%= l(:label_last_changes, @journals.length) %>)<% end %></h3> |