Browse Source

visibilise les suggesstions de commit

master
vincent 2 months ago
parent
commit
85fc4bc1e3
1 changed files with 26 additions and 0 deletions
  1. +26
    -0
      templates/task/show.html.twig

+ 26
- 0
templates/task/show.html.twig View File

@ -79,6 +79,32 @@
</div>
{% endif %}
{% if workflow_metadata(task, 'locking', task.status) %}
<div class="row">
<div class="col mb-3">
<table class="table table-bordered table-sm">
<tbody>
<tr>
<th scope="row">Commentaire</th>
<td>
{{ project.name }} {{ task.name }}
{% for hashtag in project.hashtags|split(' ') %}
{{ '#' ~ hashtag }}
{% endfor %}
</td>
</tr>
<tr>
<th scope="row">Source</th>
<td>
{{ project.source }}
</td>
</tr>
</tbody>
</table>
</div>
</div>
{% endif %}
<h2 class="mb-3">Carte</h2>
<div class="row">
<div class="col mb-3">


Loading…
Cancel
Save