You might want to do this in a helper and then just call that helper
from your view. It would be reusable and would help keep your views
nice and tidy.
For example, place the following in application_helper.rb:
def tags
tags.collect { |t| "<small>#{t.name}</small>" }.join(', ')
end
V/r
Anthony Eden