templates/v2/_bedroom.html.twig line 1

Open in your IDE?
  1. <div id="bedroom_{{ id }}">
  2.     <input type="hidden" name="forms[bedrooms][]" value="{{ id }}">
  3.     {% include "v2/_input.html.twig" with { label: 'Bedroom Name',  name: 'bedroom_'~ id ~'_name', required: true, value: 'Bedroom '~ id } %}
  4.     
  5.     {% include "v2/_score.html.twig" with { label: 'Decoration',  name: 'bedroom_'~ id ~'_decoration', required: true } %}
  6.     {% include "v2/_score.html.twig" with { label: 'Furniture and soft furnishings',  name: 'bedroom_'~ id ~'_furniture', required: true } %}
  7.     {% include "v2/_score.html.twig" with { label: 'Flooring',  name: 'bedroom_'~ id ~'_flooring', required: true } %}
  8.     {% include "v2/_score.html.twig" with { label: 'Lighting and heating',  name: 'bedroom_'~ id ~'_lighting', required: true } %}
  9.     {% include "v2/_score.html.twig" with { label: 'Beds, mattresses and headboard',  name: 'bedroom_'~ id ~'_beds', required: true } %}
  10.     {% include "v2/_score.html.twig" with { label: 'Bedding, bed linen and towels',  name: 'bedroom_'~ id ~'_bedding', required: true } %}
  11.     
  12.     {% include "v2/_yesno.html.twig" with { label: 'Curtains and blinds',  name: 'bedroom_'~ id ~'_curtains' } %}
  13.     {% include "v2/_yesno.html.twig" with { label: 'Duvets/blankets/pillows',  name: 'bedroom_'~ id ~'_duvets' } %}
  14.     {% include "v2/_yesno.html.twig" with { label: 'Mattress protector/pillowslips',  name: 'bedroom_'~ id ~'_mattressprotector' } %}
  15.     {% include "v2/_yesno.html.twig" with { label: 'Towels provided',  name: 'bedroom_'~ id ~'_towelsprovided' } %}
  16.     {% include "v2/_yesno.html.twig" with { label: 'Wardrobe/hanging space/hangers',  name: 'bedroom_'~ id ~'_wardrobe' } %}
  17.     {% include "v2/_yesno.html.twig" with { label: 'Bedside tables',  name: 'bedroom_'~ id ~'_bedsidetable' } %}
  18.     {% include "v2/_yesno.html.twig" with { label: 'Lamps',  name: 'bedroom_'~ id ~'_lamps' } %}
  19.     {% include "v2/_yesno.html.twig" with { label: 'Waste bins',  name: 'bedroom_'~ id ~'_wastebins' } %}
  20.     {% if id != 1 %}
  21.         <button class="btn btn-danger text-right btn_remove_bedroom" data-room="{{ id }}">Remove bedroom</button>
  22.     {% endif %}
  23. </div>
  24. <hr>