|
|
@ -1,32 +1,21 @@ |
|
|
|
|
|
|
|
module TabNavHelper |
|
|
|
module TabNavHelper |
|
|
|
using RefinementTest |
|
|
|
include GovukLinkHelper |
|
|
|
include GovukLinkHelper |
|
|
|
include Helpers |
|
|
|
|
|
|
|
using FormatPostcode |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def user_cell(user) |
|
|
|
def user_cell(user) |
|
|
|
link_text = user.name.presence || user.email |
|
|
|
link_text = user.name.presence || user.email |
|
|
|
[govuk_link_to(link_text, user), "<span class=\"govuk-visually-hidden\">User </span><span class=\"govuk-!-font-weight-regular app-!-colour-muted\">#{user.email}</span>"].join("\n") |
|
|
|
[govuk_link_to(link_text, user), "<span class=\"govuk-visually-hidden\">User </span><span class=\"govuk-!-font-weight-regular app-!-colour-muted\">#{user.email}</span>"].join("\n") |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
<<<<<<< Updated upstream |
|
|
|
|
|
|
|
def scheme_cell(scheme) |
|
|
|
|
|
|
|
link_text = scheme.service_name |
|
|
|
|
|
|
|
link = scheme.confirmed? ? scheme : scheme_check_answers_path(scheme) |
|
|
|
|
|
|
|
[govuk_link_to(link_text, link), "<span class=\"govuk-visually-hidden\">Scheme </span><span class=\"govuk-!-font-weight-regular app-!-colour-muted\">#{scheme.primary_client_group}</span>"].join("\n") |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
======= |
|
|
|
|
|
|
|
def location_cell(location, link) |
|
|
|
def location_cell(location, link) |
|
|
|
|
|
|
|
|
|
|
|
link_text = location.postcode.formatted_postcode |
|
|
|
link_text = location.postcode.formatted_postcode |
|
|
|
[govuk_link_to(link_text, link, method: :patch), "<span class=\"govuk-visually-hidden\">Location </span><span class=\"govuk-!-font-weight-regular app-!-colour-muted\">#{location.name}</span>"].join("\n") |
|
|
|
[govuk_link_to(link_text, link, method: :patch), "<span class=\"govuk-visually-hidden\">Location </span><span class=\"govuk-!-font-weight-regular app-!-colour-muted\">#{location.name}</span>"].join("\n") |
|
|
|
end |
|
|
|
end |
|
|
|
>>>>>>> Stashed changes |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def scheme_cell(scheme) |
|
|
|
def scheme_cell(scheme) |
|
|
|
link_text = scheme.service_name |
|
|
|
link_text = scheme.service_name |
|
|
|
[govuk_link_to(link_text, scheme), "<span class=\"govuk-visually-hidden\">Scheme </span><span class=\"govuk-!-font-weight-regular app-!-colour-muted\">#{scheme.primary_client_group}</span>"].join("\n") |
|
|
|
link = scheme.confirmed? ? scheme : scheme_check_answers_path(scheme) |
|
|
|
|
|
|
|
[govuk_link_to(link_text, link), "<span class=\"govuk-visually-hidden\">Scheme </span><span class=\"govuk-!-font-weight-regular app-!-colour-muted\">#{scheme.primary_client_group}</span>"].join("\n") |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def org_cell(user) |
|
|
|
def org_cell(user) |
|
|
@ -40,5 +29,4 @@ |
|
|
|
{ name: t("Users"), url: users_organisation_path(user.organisation) }, |
|
|
|
{ name: t("Users"), url: users_organisation_path(user.organisation) }, |
|
|
|
] |
|
|
|
] |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|