2012-02-17 11:13:54 +00:00
|
|
|
%p
|
|
|
|
- if @results and !@results.empty?
|
|
|
|
- @results.each do |result|
|
|
|
|
- if action_name == 'search'
|
|
|
|
= link_to result[:name], project_wiki_path(@project, CGI.escape(result[:name]))
|
|
|
|
%span.count= "(#{result.count} #{t("layout.wiki.matches")})"
|
|
|
|
-else
|
|
|
|
= link_to result.name, project_wiki_path(@project, CGI.escape(result.name))
|
|
|
|
%br
|
|
|
|
- else
|
|
|
|
%p#no-results
|
|
|
|
- @st_ref = capture do
|
|
|
|
%strong= @ref || @query
|
|
|
|
- if action_name == 'search'
|
|
|
|
= raw t("layout.wiki.no_results_for_search", :query => @st_ref)
|
|
|
|
- else
|
|
|
|
= raw t("layout.wiki.no_pages_in", :ref => @st_ref)
|
2012-01-18 15:06:58 +00:00
|
|
|
|
2012-02-17 11:13:54 +00:00
|
|
|
-##footer
|
|
|
|
-# %ul.actions
|
|
|
|
-# %li.minibutton= link_to t("layout.wiki.back_to_top"), '#wiki'
|