Submit social housing lettings and sales data (CORE)
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.
|
|
|
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)
|
|
|
|
[
|
|
|
|
{ name: t("Details"), url: details_organisation_path(user.organisation) },
|
|
|
|
{ name: t("Users"), url: users_organisation_path(user.organisation) },
|
|
|
|
]
|
|
|
|
end
|
|
|
|
end
|