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.
25 lines
1.5 KiB
25 lines
1.5 KiB
2 years ago
|
<% item_label = format_label(@pagy.count, "housing providers") %>
|
||
|
<% title = "Housing Providers" %>
|
||
|
<% content_for :title, title %>
|
||
|
<% if current_user.support? %>
|
||
|
<%= render partial: "organisations/headings", locals: { main: @organisation.name, sub: nil } %>
|
||
|
<%= render SubNavigationComponent.new(items: secondary_items(request.path, @organisation.id)) %>
|
||
|
<h2 class="govuk-visually-hidden">Housing Providers</h2>
|
||
|
<p class="govuk-body">This organisation can submit logs for its housing providers.</p>
|
||
|
<% else %>
|
||
|
<%= render partial: "organisations/headings", locals: { main: "Your housing providers", sub: nil } %>
|
||
|
<p class="govuk-body">Your organisation can submit logs for its housing providers.</p>
|
||
|
<% end %>
|
||
|
|
||
|
<% if @total_count == 0 %>
|
||
|
<p class="govuk-body">This organisation does not currently have any housing providers.</p>
|
||
|
<% end %>
|
||
|
<% if current_user.data_coordinator? || current_user.support? %>
|
||
|
<%= govuk_button_link_to "Add a housing provider", housing_providers_organisation_path(organisation_id: @organisation.id), html: { method: :get } %>
|
||
|
<% end %>
|
||
|
<% if @total_count != 0 %>
|
||
|
<%= render SearchComponent.new(current_user:, search_label: "Search for a housing provider", value: @searched) %>
|
||
|
<%= render partial: "organisation_relationships/housing_provider_list", locals: { index: @housing_providers, title: "Housing providers", pagy: @pagy, searched: @searched, item_label:, total_count: @total_count } %>
|
||
|
<%== render partial: "pagy/nav", locals: { pagy: @pagy, item_name: "housing providers" } %>
|
||
|
<% end %>
|