<div id="bathroom_{{ id }}">
<input type="hidden" name="forms[bathrooms][]" value="{{ id }}">
{% include "v2/_input.html.twig" with { label: 'Bathroom Name', name: 'bathroom_'~ id ~'_name', required: true, value: 'Bathroom '~ id } %}
{% include "v2/_score.html.twig" with { label: 'Decoration', name: 'bathroom_'~ id ~'_decoration', required: true } %}
{% include "v2/_score.html.twig" with { label: 'Fixtures and fittings', name: 'bathroom_'~ id ~'_furniture', required: true } %}
{% include "v2/_score.html.twig" with { label: 'Flooring', name: 'bathroom_'~ id ~'_flooring', required: true } %}
{% include "v2/_score.html.twig" with { label: 'Lighting, heating and ventilation', name: 'bathroom_'~ id ~'_lighting', required: true } %}
{% include "v2/_yesno.html.twig" with { label: 'Towel rail', name: 'bathroom_'~ id ~'_towelrail' } %}
{% include "v2/_yesno.html.twig" with { label: 'Mirror', name: 'bathroom_'~ id ~'_mirror' } %}
{% include "v2/_yesno.html.twig" with { label: 'Shaver point', name: 'bathroom_'~ id ~'_shaverpoint' } %}
{% include "v2/_yesno.html.twig" with { label: 'Waste bin', name: 'bathroom_'~ id ~'_wastebin' } %}
{% include "v2/_yesno.html.twig" with { label: 'Bath mats', name: 'bathroom_'~ id ~'_bathmats' } %}
{% include "v2/_yesno.html.twig" with { label: 'Toilet brush', name: 'bathroom_'~ id ~'_toiletbrush' } %}
{% include "v2/_yesno.html.twig" with { label: 'Shower head', name: 'bathroom_'~ id ~'_showerhead' } %}
{% if id != 1 %}
<button class="btn btn-danger text-right btn_remove_bathroom" data-room="{{ id }}">Remove bathroom</button>
{% endif %}
</div>
<hr>