Cross Reference: link_helper.rb
xref
: /
ontohub
/
app
/
helpers
/
link_helper.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
link_helper.rb revision 3ff4a55d2d96372130084b5c9816c0608eb21210
module
LinkHelper
def
counter_link
(
url
,
counter
,
subject
)
text
=
content_tag
(:
strong
,
counter
||
'?'
)
text
<< content_tag
(:span, counter==1 ? subject : subject.pluralize)
link_to text, url
end
end