svg
This commit is contained in:
@ -16,15 +16,11 @@
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div><a href="{{path("app_issue_update",{id:issue.id})}}">Modifier</a></div>
|
||||
<div class="d-flex">
|
||||
<a href="{{path("app_issue_update",{id:issue.id})}}">Modifier</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{% for child in issue.childs %}
|
||||
{{ child.id }}
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div class="issueDescription card-body" style="height:500px;overflow-y:auto">
|
||||
<div class="d-flex">
|
||||
<div class="mb-3" style="flex-grow:0.5">
|
||||
@ -40,9 +36,9 @@
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% if sprintName %}
|
||||
<strong>Sprint =</strong> {{sprintName}} (Position {{ issue.redmine.sprint.position }})<br>
|
||||
<strong>Sprint =</strong> {{sprintName}}<br>
|
||||
{% else %}
|
||||
<strong>Sprint =</strong> Aucun (Position {{ issue.redmine.sprint.position }})<br>
|
||||
<strong>Sprint =</strong> Aucun<br>
|
||||
{% endif %}
|
||||
<strong>Version Cible =</strong> {{(issue.redmine.fixed_version is defined?issue.redmine.fixed_version.name:'Aucune')}}<br>
|
||||
<strong>Story Point =</strong> {{issue.redmine.sprint.story_points}}<br>
|
||||
@ -72,6 +68,26 @@
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div>
|
||||
{% if issue.parent %}
|
||||
<hr>
|
||||
<strong>Issues Parentes</strong>
|
||||
<div onClick='viewIssue({{ issue.parent.id }})' style="cursor:pointer">
|
||||
<small>#{{ issue.parent.id }} = {{ issue.parent.redmine.subject }}</small>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% for child in issue.childs %}
|
||||
{% if loop.first %}
|
||||
<hr>
|
||||
<strong>Issues Liées</strong>
|
||||
{%endif%}
|
||||
<div onClick='viewIssue({{ child.id }})' style="cursor:pointer">
|
||||
<small>#{{ child.id }} = {{ child.redmine.subject }}</small>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
{% if issue.redmine.description %}
|
||||
<div class="mb-3">
|
||||
<hr>
|
||||
|
Reference in New Issue
Block a user