Sha256: 51781d6733f0dc830de6a2cf53a78a437b07f7d9023672e3fe3630064ab9e9cc
Contents?: true
Size: 922 Bytes
Versions: 1
Compression:
Stored size: 922 Bytes
Contents
<% @page_title = l(:search_results_for, :query => @search) %> <div id="lfeature"> <div class="btitle"> <h4><%=l(:backlogs) %></h4> </div> <ul> <% @backlogs.each do |backlog| %> <li><%=link_to backlog.name, :controller => 'backlogs', :action => :show, :id => backlog%></li> <% end %> </ul> </div> <div id="lfeature"> <div class="btitle"> <h4><%=l(:tasks) %></h4> </div> <ul> <% @tasks.each do |task| %> <li><%=link_to task.description, :controller => 'tasks', :action => :edit, :id => task%></li> <% end %> </ul> </div> <div id="rfeature"> <div class="btitle"> <h4><%=l(:work) %></h4> </div> <ul> <% @works.each do |work| %> <li><%=link_to "#{work.description && !work.description.empty? ? work.description : l(:empty_work_record)}", :controller => 'works', :action => :edit, :id => work%></li> <% end %> </ul> </div> <script type="text/javascript"> f = $('q'); f.focus(); f.select(); </script>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
backlog-0.36.2 | app/views/search/results.rhtml |