summaryrefslogtreecommitdiffstats
path: root/app/views/issues/_trackers_description.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/issues/_trackers_description.html.erb')
-rw-r--r--app/views/issues/_trackers_description.html.erb13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/views/issues/_trackers_description.html.erb b/app/views/issues/_trackers_description.html.erb
new file mode 100644
index 000000000..63c361983
--- /dev/null
+++ b/app/views/issues/_trackers_description.html.erb
@@ -0,0 +1,13 @@
+<% if trackers.any? {|t| t.description.present? } %>
+ <div class="modal" id="trackers_description">
+ <h3 class="title"><%= l(:label_trackers_description) %></h3>
+ <dl>
+ <% trackers.each do |tracker| %>
+ <% if tracker.description.present? %>
+ <dt><%= tracker.name %></dt>
+ <dd><%= tracker.description %></dd>
+ <% end %>
+ <% end %>
+ </dl>
+ </div>
+<% end %>