output<<content_tag(:span,access,class: "user-access-role has-tooltip d-none d-xl-inline-block gl-ml-3 ",title: _("This user is a %{access} of the %{name} project.")%{access: access.downcase,name: project.name})
output<<content_tag(:span,access,class: "user-access-role has-tooltip d-none d-xl-inline-block gl-ml-3 ",title: _("This user has the %{access} role in the %{name} project.")%{access: access.downcase,name: project.name})
output<<content_tag(:span,_("Contributor"),class: "user-access-role has-tooltip d-none d-xl-inline-block gl-ml-3",title: _("This user has previously committed to the %{name} project.")%{name: project.name})
%span{class: 'note-role user-access-role has-tooltip d-none d-md-inline-block',title: _("This user is the author of this %{noteable}.")%{noteable: @noteable.human_class_name}}=_("Author")
-ifaccess
%span{class: 'note-role user-access-role has-tooltip',title: _("This user is a %{access} of the %{name} project.")%{access: access.downcase,name: note.project_name}}=access
%span{class: 'note-role user-access-role has-tooltip',title: _("This user has the %{access} role in the %{name} project.")%{access: access.downcase,name: note.project_name}}=access
-elsifnote.contributor?
%span{class: 'note-role user-access-role has-tooltip',title: _("This user has previously committed to the %{name} project.")%{name: note.project_name}}=_("Contributor")