def attribution_owners_tag(attribution)
    a = attribution.owner_roles.eager_load(:organization, :person).collect{|b| b.agent}
    return nil unless a.any?
    ('Owned by ' + Utilities::Strings.authorship_sentence(a.collect{|b| b.name})).html_safe