debian-mirror-gitlab/app/helpers/tags_helper.rb

15 lines
214 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
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