Twig redaction

Hello grav

I wondered if someone could not tell how to make the following code pretty ? (less redondant…) Thanks in advance

{% if page.header.background == 'honeycomb' %},{% include 'partials/background-honeycomb-svg.html.twig' %},{% endif %}
{% if page.header.background == 'chevrons' %},{% include 'partials/background-chevrons-svg.html.twig' %},{% endif %}
... etc...

I cannot get

{% include 'partials/background-{{ page.header.background }}-svg.html.twig' %}

to work directly

Use

{% include 'partials/background-' ~ page.header.background ~
 '-svg.html.twig' %}

☆ Thank you very much ♪