Paul Robert Lloyd
3 years ago
committed by
GitHub
44 changed files with 344 additions and 306 deletions
@ -0,0 +1,24 @@
|
||||
--- |
||||
EnableDefaultLinters: true |
||||
linters: |
||||
Rubocop: |
||||
enabled: true |
||||
rubocop_config: |
||||
inherit_from: |
||||
- .rubocop.yml |
||||
Layout/ArgumentAlignment: |
||||
Enabled: false |
||||
Layout/CommentIndentation: |
||||
Enabled: false |
||||
Layout/FirstArgumentIndentation: |
||||
Enabled: false |
||||
Layout/FirstArrayElementIndentation: |
||||
Enabled: false |
||||
Layout/FirstHashElementIndentation: |
||||
Enabled: false |
||||
Layout/InitialIndentation: |
||||
Enabled: false |
||||
Layout/TrailingEmptyLines: |
||||
Enabled: false |
||||
Lint/UselessAssignment: |
||||
Enabled: false |
@ -1,25 +1,25 @@
|
||||
<%- if controller_name != 'sessions' %> |
||||
<p class="govuk-body">Already have an account? <%= govuk_link_to "Sign in", new_session_path(resource_name) %>.</p><br /> |
||||
<p class="govuk-body">Already have an account? <%= govuk_link_to "Sign in", new_session_path(resource_name) %>.</p> |
||||
<% end %> |
||||
|
||||
<%- if devise_mapping.registerable? && controller_name != 'registrations' %> |
||||
<%= govuk_link_to "Sign up", new_registration_path(resource_name) %><br /> |
||||
<%= govuk_link_to "Sign up", new_registration_path(resource_name) %><br> |
||||
<% end %> |
||||
|
||||
<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %> |
||||
<p class="govuk-body"> You can <%= govuk_link_to "reset your password", new_password_path(resource_name) %> if you’ve forgotten it.<p><br /> |
||||
<p class="govuk-body">You can <%= govuk_link_to "reset your password", new_password_path(resource_name) %> if you’ve forgotten it.</p> |
||||
<% end %> |
||||
|
||||
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> |
||||
<%= govuk_link_to "Didn’t receive confirmation instructions?", new_confirmation_path(resource_name) %><br /> |
||||
<%= govuk_link_to "Didn’t receive confirmation instructions?", new_confirmation_path(resource_name) %><br> |
||||
<% end %> |
||||
|
||||
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %> |
||||
<%= govuk_link_to "Didn’t receive unlock instructions?", new_unlock_path(resource_name) %><br /> |
||||
<%= govuk_link_to "Didn’t receive unlock instructions?", new_unlock_path(resource_name) %><br> |
||||
<% end %> |
||||
|
||||
<%- if devise_mapping.omniauthable? %> |
||||
<%- resource_class.omniauth_providers.each do |provider| %> |
||||
<%= govuk_link_to "Sign in with #{OmniAuth::Utils.camelize(provider)}", omniauth_authorize_path(resource_name, provider), method: :post %><br /> |
||||
<%= govuk_link_to "Sign in with #{OmniAuth::Utils.camelize(provider)}", omniauth_authorize_path(resource_name, provider), method: :post %><br> |
||||
<% end %> |
||||
<% end %> |
||||
|
@ -1,14 +1,13 @@
|
||||
<%= render partial: "form/guidance/#{question.guidance_partial}" if question.guidance_partial %> |
||||
|
||||
<% selected = @case_log.public_send(question.id) || "" %> |
||||
<%= answers = question.displayed_answer_options.map { |key, value| OpenStruct.new(id: key, name: value) } |
||||
f.govuk_collection_select question.id.to_sym, |
||||
<%= answers = question.displayed_answer_options.map { |key, value| OpenStruct.new(id: key, name: value) } %> |
||||
<%= f.govuk_collection_select question.id.to_sym, |
||||
answers, |
||||
:id, |
||||
:name, |
||||
caption: caption(caption_text, page_header, conditional), |
||||
label: legend(question, page_header, conditional), |
||||
hint: { text: question.hint_text&.html_safe }, |
||||
options: { disabled: [""], selected: selected }, |
||||
"data-controller": "accessible-autocomplete" |
||||
%> |
||||
options: { disabled: [""], selected: }, |
||||
"data-controller": "accessible-autocomplete" %> |
||||
|
@ -1,13 +1,16 @@
|
||||
<div class="app-card"> |
||||
<h2 class="govuk-heading-s">Collection resources</h2> |
||||
|
||||
<%= render DocumentListComponent.new(items: [{ |
||||
<%= render DocumentListComponent.new(items: [ |
||||
{ |
||||
name: "Lettings log for tenants (2022/23)", |
||||
href: "https://core.communities.gov.uk/public/download/guides-and-manuals/2022-23%20Lettings%20paper%20form.pdf?download-format=pdf", |
||||
metadata: "PDF, 654 KB, 4 pages" |
||||
}, { |
||||
metadata: "PDF, 654 KB, 4 pages", |
||||
}, |
||||
{ |
||||
name: "Lettings log for tenants (2021/22)", |
||||
href: "https://core.communities.gov.uk/public/download/guides-and-manuals/2021_22%20Lettings%20Log.pdf?download-format=pdf", |
||||
metadata: "PDF, 302 KB, 3 pages" |
||||
}]) %> |
||||
metadata: "PDF, 302 KB, 3 pages", |
||||
}, |
||||
]) %> |
||||
</div> |
||||
|
Loading…
Reference in new issue