alias_and_implication_list: add help links for aliases/implications.

This commit is contained in:
evazion
2017-03-23 03:18:41 -05:00
parent 267d70bd52
commit 8918e301b4

View File

@@ -7,32 +7,32 @@ module TagsHelper
if tag.antecedent_alias
html << "<p class='hint'>This tag has been aliased to "
html << link_to(tag.antecedent_alias.consequent_name, show_or_new_wiki_pages_path(:title => tag.antecedent_alias.consequent_name))
html << ".</p>"
html << " (#{link_to "learn more", wiki_pages_path(title: "help:tag_aliases")}).</p>"
end
if tag.consequent_aliases.any?
html << "<p class='hint'>The following tags are aliased to this tag: "
html << raw(tag.consequent_aliases.map {|x| link_to(x.antecedent_name, show_or_new_wiki_pages_path(:title => x.antecedent_name))}.join(", "))
html << ".</p>"
html << " (#{link_to "learn more", wiki_pages_path(title: "help:tag_aliases")}).</p>"
end
automatic_tags = TagImplication.automatic_tags_for([tag.name])
if automatic_tags.any?
html << "<p class='hint'>This tag automatically adds "
html << raw(automatic_tags.map {|x| link_to(x, show_or_new_wiki_pages_path(:title => x))}.join(", "))
html << ".</p>"
html << " (#{link_to "learn more", wiki_pages_path(title: "help:autotags")}).</p>"
end
if tag.antecedent_implications.any?
html << "<p class='hint'>This tag implicates "
html << raw(tag.antecedent_implications.map {|x| link_to(x.consequent_name, show_or_new_wiki_pages_path(:title => x.consequent_name))}.join(", "))
html << ".</p>"
html << " (#{link_to "learn more", wiki_pages_path(title: "help:tag_implications")}).</p>"
end
if tag.consequent_implications.any?
html << "<p class='hint'>The following tags implicate this tag: "
html << raw(tag.consequent_implications.map {|x| link_to(x.antecedent_name, show_or_new_wiki_pages_path(:title => x.antecedent_name))}.join(", "))
html << ".</p>"
html << " (#{link_to "learn more", wiki_pages_path(title: "help:tag_implications")}).</p>"
end
html.html_safe