You are here

configuration_update_checklist.yml.twig in Update helper 8

{% block file_methods %}
{% if update_version %}
{{ update_version }}:
    '#title': 'Update to version {{ update_version }}'
    '#description': '<h3>These are the new features for this release:</h3>'
{% endif %}
    {{ update_hook_name }}:
        '#title': '{{ checklist_title }}'
        '#description': '<p>{{ checklist_description }}</p>'
        '#description_successful': '<p>{{ checklist_success }}</p>'
        '#description_failed': '<p><strong>{{ checklist_failed }}</strong><p>'
{% endblock %}

File

modules/update_helper_checklist/templates/console/configuration_update_checklist.yml.twig
View source
  1. {% block file_methods %}
  2. {% if update_version %}
  3. {{ update_version }}:
  4. '#title': 'Update to version {{ update_version }}'
  5. '#description': '<h3>These are the new features for this release:</h3>'
  6. {% endif %}
  7. {{ update_hook_name }}:
  8. '#title': '{{ checklist_title }}'
  9. '#description': '<p>{{ checklist_description }}</p>'
  10. '#description_successful': '<p>{{ checklist_success }}</p>'
  11. '#description_failed': '<p><strong>{{ checklist_failed }}</strong><p>'
  12. {% endblock %}