{% extends 'layout_page.twig' %} {% set page = 'treegraph' %} {% block title %}P3X GitList{% endblock %} {% block content %} {% include 'breadcrumb.twig' with {breadcrumbs: [{dir: 'Graph', path:''}]} %}
    {% for item in graphItems %}
  • {{ item.relation }}
  • {% endfor %}
    {% for item in graphItems %}
  • {% if item.rev is defined %} {{ item.short_rev }} {{ item.branch }} {{ item.subject }} by {{ item.author }} on {{ item.date | date(gitlist_date_format) }} {% else %} {% endif %}
  • {% endfor %}
{% endblock %}