Sha256: 46f7c548f46dbf0a7d88c6aaf3f283ab945446fd0e5d8c599e0441c05502f0b3
Contents?: true
Size: 922 Bytes
Versions: 2
Compression:
Stored size: 922 Bytes
Contents
<% @page_title = l(:search_results_for, :query => @search) %> <div id="lfeature"> <div class="btitle"> <h4><%=l(:projects) %></h4> </div> <ul> <% @projects.each do |project| %> <li><%=link_to project.name, :controller => 'projects', :action => :show, :id => project%></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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
backlog-0.37.2 | app/views/search/results.rhtml |
backlog-0.37.1 | app/views/search/results.rhtml |