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)
|
|
|
|
link_text = user.name.presence || user.email
|
|
|
|
[govuk_link_to(link_text, user), "<span class=\"govuk-!-font-weight-regular app-!-colour-muted\">#{user.email}</span>"].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
|