registration.html.twig in RNG - Events and Registrations 3.x
Same filename and directory in other branches
registration.html.twig Default theme implementation to show a registration.
This template is used when viewing registrations entities.
Available variables:
- content: A list of content items. Use 'content' to print all content, or
- attributes: HTML attributes for the container element.
See also
File
templates/registration.html.twigView source
- {#
- /**
- * @file registration.html.twig
- * Default theme implementation to show a registration.
- *
- * This template is used when viewing registrations entities.
- *
- * Available variables:
- * - content: A list of content items. Use 'content' to print all content, or
- * - attributes: HTML attributes for the container element.
- *
- * @see template_preprocess_registration()
- *
- * @ingroup themeable
- */
- #}
- <div{{ attributes.addClass('registration') }}>
- {% if content %}
- {{- content -}}
- {% endif %}
- </div>