{% extends 'layout-page.twig' %} {% set page = 'treegraph' %} {% block title %}P3X GitList{% endblock %} {% block content %} {% embed 'breadcrumb.twig' with {breadcrumbs: [{dir: 'Log graph', path:''}]} %} {% block right %} {% endblock %} {% block left %} Hover over the log to see the full commit message. {% endblock %} {% endembed %}
    {% for item in graphItems %}
  • {{ item.relation }}
  • {% endfor %}
    {% for item in graphItems %}
  • {% if item.rev is defined %} {{ item.short_rev }} {{ item.branch }} {{ item.date | date(gitlist_date_format) }} by {{ item.author }}   {{ item.subject }} {% else %} {% endif %}
  • {% endfor %}
{% endblock %}