log-content-add-list.html.twig in Log entity 8
Default theme implementation to present a list of custom content entity types/bundles.
Available variables:
- types: A collection of all the available custom entity types/bundles.
Each type/bundle contains the following:
- link: A link to add a content entity of this type.
- description: A description of this content entity types/bundle.
See also
1 theme call to log-content-add-list.html.twig
- LogAddController::add in src/
Controller/ LogAddController.php - Displays add links for available bundles/types for entity log .
File
templates/log-content-add-list.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation to present a list of custom content entity types/bundles.
- *
- * Available variables:
- * - types: A collection of all the available custom entity types/bundles.
- * Each type/bundle contains the following:
- * - link: A link to add a content entity of this type.
- * - description: A description of this content entity types/bundle.
- *
- * @see template_preprocess_log_content_add_list()
- *
- * @ingroup themeable
- */
- #}
- {% spaceless %}
- <dl>
- {% for type in types %}
- <dt>{{ type.link }}</dt>
- {% endfor %}
- </dl>
- {% endspaceless %}