webform_calculation-8.x-1.0/templates/webform-calculation.html.twig
templates/webform-calculation.html.twig
{#
/**
* @file
* Default theme implementation for webform calculation.
*
* Available variables:
* - submission: The webform submission.
* - result: Calculated result for the webform.
*
* @ingroup themeable
*/
#}
<h2>{{ 'Submitted non-iterable values'|t }}</h2>
{% for key, value in submission.getData if value is not iterable %}
<p>{{ key }}: {{ value }}</p>
{% endfor %}
<h2>{{ 'Result'|t }}</h2>
Evaluated field: {{ result }}
