You are here

opigno-learning-path-training-content-step.html.twig in Opigno Learning path 3.x

Same filename and directory in other branches
  1. 8 templates/opigno-learning-path-training-content-step.html.twig

Default theme implementation to display the training content elements.step.

Available variables:

  • elements.step: The elements.step object with all the data.
  • group: The Group object which the elements.steps is part of.

File

templates/opigno-learning-path-training-content-step.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display the training content elements.step.
  5. *
  6. * Available variables:
  7. * - elements.step: The elements.step object with all the data.
  8. * - group: The Group object which the elements.steps is part of.
  9. */
  10. #}
  11. {{ elements.step.summary_details_table }}
  12. {% if elements.step.course_steps %}
  13. <tr>
  14. <td colspan="6">
  15. <div class="inner-table">
  16. <table class="statistics-table table-striped responsive-enabled table table-hover" data-striping="1">
  17. {{ elements.step.course_steps }}
  18. </table>
  19. </div>
  20. </td>
  21. </tr>
  22. {% endif %}