To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / auto_completes / issues.html.erb @ 441:cbce1fd3b1b7

History | View | Annotate | Download (271 Bytes)

1
<ul>
2
<% if @issues.any? -%>
3
  <% @issues.each do |issue| -%>
4
    <%= content_tag 'li', h("#{issue.tracker} ##{issue.id}: #{issue.subject}"), :id => issue.id %>
5
  <% end -%>
6
<% else -%>
7
  <%= content_tag("li", l(:label_none), :style => 'display:none') %>
8
<% end -%>
9
</ul>