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.
34 lines
1.0 KiB
34 lines
1.0 KiB
<% content_for :before_content do %> |
|
<%= govuk_back_link( |
|
text: 'Back', |
|
href: :back, |
|
) %> |
|
<% end %> |
|
|
|
<h1 class="govuk-heading-l"> |
|
Your Organisation |
|
</h1> |
|
|
|
<%= render TabNavigationComponent.new(items: [ |
|
{ name: t('Details'), url: details_organisation_path(@organisation) }, |
|
{ name: t('Users'), url: users_organisation_path(@organisation) }, |
|
]) %> |
|
|
|
<%= govuk_table do |table| %> |
|
<%= table.head do |head| %> |
|
<%= head.row do |row| |
|
row.cell(header: true, text: "Name and email adress") |
|
row.cell(header: true, text: "Organisation and role") |
|
row.cell(header: true, text: "Last logged in") |
|
end %> |
|
<% end %> |
|
<% @organisation.users.each do |user| %> |
|
<%= table.body do |body| %> |
|
<%= body.row do |row| |
|
row.cell(text: simple_format(user.name_email_display, {}, wrapper_tag: "div")) |
|
row.cell(text: simple_format(user.org_role_display, {}, wrapper_tag: "div")) |
|
row.cell(text: user.last_sign_in_at_display ) |
|
end %> |
|
<% end %> |
|
<% end %> |
|
<% end %>
|
|
|