2023-12-23 23:56:18 +01:00
|
|
|
{% extends 'base/single.column.html.twig' %}
|
2023-04-02 19:34:00 +02:00
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm">
|
2023-12-23 23:56:18 +01:00
|
|
|
<h3>{{ app.user.name }}</h3>
|
2023-04-02 19:34:00 +02:00
|
|
|
<br/>
|
|
|
|
{% if is_granted('ROLE_ADMIN') %}
|
|
|
|
<br/><br/>
|
|
|
|
<h4>Latest release stats</h4>
|
|
|
|
Branch: {{ release.branch }} <br/>
|
|
|
|
Date: {{ release.date }} <br/>
|
|
|
|
Hash short: {{ release.commitHashShort }} <br/>
|
|
|
|
Hash long: {{ release.commitHashLong }} <br/>
|
|
|
|
Commit date: {{ release.commitDate }} <br/>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="col-sm">
|
2023-12-23 23:56:18 +01:00
|
|
|
<h3>Change profile</h3>
|
2023-04-02 19:34:00 +02:00
|
|
|
{{ form(form) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|