RSS Git Download  Clone
Raw View History
Blames found: 11 Mode: twig Binary: false


Hang on, we reloading big blames...
{% extends 'layout_page.twig' %} {% set page = 'treegraph' %}
{% block title %}P3X GitList{% endblock %}
{% block content %}
{% include 'breadcrumb.twig' with {breadcrumbs: [{dir: 'Graph', path:''}, {dir: branch, path:''}]} %}
<div class="network-view">
<div id="git-graph-container"> <div id="rel-container"> <canvas id="graph-canvas" width="100px"> <ul id="graph-raw-list"> {% for item in graphItems %} <li><span class="node-relation">{{ item.relation }}</span></li> {% endfor %} </ul> </canvas> </div> <div style="float:left;" id="rev-container"> <ul id="rev-list"> {% for item in graphItems %} <li> {% if item.rev is defined %}
<a id="{{ item.short_rev }}" class="treegraph-button" href="{{ path('commit', {repo: repo, commit: item.rev}) }}"> {{ item.short_rev }} </a>
<strong> {{ item.branch }} </strong> <em>{{ item.subject }}</em> by
<span class="author"><a href="mailto:{{ item.author_email }}">{{ item.author }}</a></span> <span>{{ item.date | date(gitlist_date_format) }}</span>;
{% else %} <span/> {% endif %} </li> {% endfor %} </ul> </div> <div style="clear:both"><!-- --></div> </div> </div> {% endblock %}