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.
17 lines
525 B
17 lines
525 B
2 years ago
|
<% content_for :before_content do %>
|
||
|
<%= govuk_back_link href: @form.back_path %>
|
||
|
<% end %>
|
||
|
|
||
|
<%= form_with model: @form, scope: :form, url: bulk_upload_lettings_log_path(id: "year"), method: :patch do |f| %>
|
||
|
<%= f.govuk_error_summary %>
|
||
|
|
||
|
<%= f.govuk_collection_radio_buttons :year,
|
||
|
@form.options,
|
||
|
:id,
|
||
|
:name,
|
||
|
legend: { text: "Which year are you uploading data for?", size: "l" },
|
||
|
caption: { text: "Upload lettings logs in bulk", size: "l" } %>
|
||
|
|
||
|
<%= f.govuk_submit %>
|
||
|
<% end %>
|