Sha256: c5b4d25af527b5e3c0c70c786b0d3394da922cf9b6e153d591405e79ce4ea0ab

Contents?: true

Size: 1.16 KB

Versions: 16

Compression:

Stored size: 1.16 KB

Contents

<% @page_title = l(:search_results_for, @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="rfeature">
  <div class="btitle">
    <h4><%=l(:work_accounts) %></h4>
  </div>
<ul>
<% @work_accounts.each do |work_account| %>
<li><%=link_to work_account.name, :controller => 'work_accounts', :action => :edit, :id => work_account%></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

16 entries across 16 versions & 1 rubygems

Version Path
backlog-0.29.0 app/views/search/results.rhtml
backlog-0.30.0 app/views/search/results.rhtml
backlog-0.31.0 app/views/search/results.rhtml
backlog-0.31.1 app/views/search/results.rhtml
backlog-0.32.0 app/views/search/results.rhtml
backlog-0.33.0 app/views/search/results.rhtml
backlog-0.33.1 app/views/search/results.rhtml
backlog-0.34.1 app/views/search/results.rhtml
backlog-0.34.2 app/views/search/results.rhtml
backlog-0.34 app/views/search/results.rhtml
backlog-0.35.0 app/views/search/results.rhtml
backlog-0.35.1 app/views/search/results.rhtml
backlog-0.35.2 app/views/search/results.rhtml
backlog-0.35.4 app/views/search/results.rhtml
backlog-0.35.3 app/views/search/results.rhtml
backlog-0.35.5 app/views/search/results.rhtml