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.
		
		
		
		
		
			
		
			
				
					
					
						
							43 lines
						
					
					
						
							2.3 KiB
						
					
					
				
			
		
		
	
	
							43 lines
						
					
					
						
							2.3 KiB
						
					
					
				<% title = "#{action.humanize} #{@location.name}" %> | 
						|
<% content_for :title, title %> | 
						|
 | 
						|
<% content_for :before_content do %> | 
						|
  <%= govuk_back_link( | 
						|
    href: scheme_location_path(@location.scheme, @location), | 
						|
  ) %> | 
						|
<% end %> | 
						|
 | 
						|
<%= form_with model: @location_deactivation_period, url: toggle_location_form_path(action, @location), method: "patch", local: true do |f| %> | 
						|
  <div class="govuk-grid-row"> | 
						|
    <div class="govuk-grid-column-two-thirds"> | 
						|
    <% start_date = FormHandler.instance.earliest_open_for_editing_collection_start_date %> | 
						|
    <%= f.govuk_error_summary %> | 
						|
        <%= f.govuk_radio_buttons_fieldset date_type_question(action), | 
						|
                                            legend: { text: I18n.t("questions.location.toggle_active.apply_from") }, | 
						|
                                            caption: { text: title }, | 
						|
                                            hint: { text: I18n.t("hints.location.toggle_active", date: start_date.to_formatted_s(:govuk_date)) } do %> | 
						|
            <%= govuk_warning_text text: I18n.t("warnings.location.#{action}.existing_logs") %> | 
						|
            <%= f.govuk_radio_button date_type_question(action), | 
						|
                                        "default", | 
						|
                                        label: { text: "From the start of the open collection period (#{start_date.to_formatted_s(:govuk_date)})" } %> | 
						|
 | 
						|
            <%= f.govuk_radio_button date_type_question(action), | 
						|
                                        "other", | 
						|
                                        label: { text: "For tenancies starting after a certain date" }, | 
						|
                                        **basic_conditional_html_attributes({ "deactivation_date" => %w[other] }, "location") do %> | 
						|
                                          <%= render partial: "components/date_picker", locals: { | 
						|
                                            resource: @location, | 
						|
                                            question_id: date_question(action), | 
						|
                                            legend: { text: "Date", size: "m" }, | 
						|
                                            resource_type: "location", | 
						|
                                            hint: "For example, 27/3/2024", | 
						|
                                            f:, | 
						|
} %> | 
						|
                                        <% end %> | 
						|
 | 
						|
        <% end %> | 
						|
 | 
						|
        <%= f.govuk_submit "Continue" %> | 
						|
    </div> | 
						|
  </div> | 
						|
<% end %>
 | 
						|
 |