summaryrefslogtreecommitdiff
path: root/app/helpers/tags_helper.rb
blob: fb85544df2d7a9da130de651631bf962562cfd6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module TagsHelper
  def tag_path(tag)
    "/tags/#{tag}"
  end

  def tag_list(project)
    html = ''
    project.tag_list.each do |tag|
      html << link_to(tag, tag_path(tag))
    end

    html.html_safe
  end
end