You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
543 B
21 lines
543 B
3 years ago
|
module TabNavHelper
|
||
|
include GovukLinkHelper
|
||
|
|
||
|
def user_cell(user)
|
||
|
[govuk_link_to(user.name, user), user.email].join("\n")
|
||
|
end
|
||
|
|
||
|
def org_cell(user)
|
||
|
role = "<span class='app-!-colour-muted'>#{user.role.to_s.humanize}</span>"
|
||
|
[user.organisation.name, role].join("\n")
|
||
|
end
|
||
|
|
||
|
def tab_items(user)
|
||
|
items = [{ name: t("Details"), url: details_organisation_path(user.organisation) }]
|
||
|
if user.data_coordinator?
|
||
|
items << { name: t("Users"), url: users_organisation_path(user.organisation) }
|
||
|
end
|
||
|
items
|
||
|
end
|
||
|
end
|