This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/web/modules/contrib/webform/templates/webform-submission-text.html.twig

28 lines
808 B
Twig
Raw Normal View History

2017-03-16 15:29:07 +00:00
{#
/**
* @file
* Default theme implementation from form submission as plain text.
*
* @ingroup themeable
*/
#}
--------------------------------------------------------------------------------
{{ 'Submission ID'|t }}: {{ sid }}
{{ 'Submission UUID'|t }}: {{ uuid }}
{{ 'Submission URI'|t }}: {{ uri }}
{{ 'Created'|t }}: {{ created }}
{{ 'Completed'|t }}: {{ completed }}
{{ 'Changed'|t }}: {{ changed }}
{{ 'Is draft'|t }}: {{ is_draft }}
{{ 'Current page'|t }}: {{ current_page }}
{{ 'Remote IP address'|t }}: {{ remote_addr }}
{{ 'Submitted by'|t }}: {{ submitted_by }}
{{ 'Language'|t }}: {{ language }}
{{ 'Form'|t }}: {{ form }}
{{ 'Submitted to'|t }}: {{ submitted_to }}
--------------------------------------------------------------------------------
{{ 'Submitted values are'|t }}:
{{ data }}