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.
24 lines
625 B
24 lines
625 B
3 years ago
|
<% content_for :before_content do %>
|
||
|
<%= govuk_back_link(
|
||
|
text: 'Back',
|
||
|
href: :back,
|
||
|
) %>
|
||
|
<% end %>
|
||
|
|
||
|
<% content_for :content do %>
|
||
|
<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) },
|
||
|
]) %>
|
||
|
|
||
|
<h2 class="govuk-visually-hidden"><%= content_for(:tab_title) %></h2>
|
||
|
|
||
|
<%= content_for?(:organisations_content) ? yield(:organisations_content) : yield %>
|
||
|
<% end %>
|
||
|
|
||
|
<%= render template: "layouts/application" %>
|