svg
This commit is contained in:
@ -23,7 +23,6 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- "8008:80"
|
- "8008:80"
|
||||||
volumes:
|
volumes:
|
||||||
- ./assets:/app/assets:delegated
|
|
||||||
- ./src:/app/src:delegated
|
- ./src:/app/src:delegated
|
||||||
- ./templates:/app/templates:delegated
|
- ./templates:/app/templates:delegated
|
||||||
- ./config:/app/config:delegated
|
- ./config:/app/config:delegated
|
||||||
|
@ -246,6 +246,7 @@ class RedmineService
|
|||||||
$parent = $this->issueRepository->find($issue->getRedmine()['parent']['id']);
|
$parent = $this->issueRepository->find($issue->getRedmine()['parent']['id']);
|
||||||
}
|
}
|
||||||
$issue->setParent($parent);
|
$issue->setParent($parent);
|
||||||
|
$this->em->flush();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,6 +17,11 @@
|
|||||||
</div>
|
</div>
|
||||||
</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="issueDescription card-body" style="height:500px;overflow-y:auto">
|
||||||
<div class="d-flex">
|
<div class="d-flex">
|
||||||
<div class="mb-3" style="flex-grow:0.5">
|
<div class="mb-3" style="flex-grow:0.5">
|
||||||
@ -71,22 +76,26 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% for journal in issue.redmine.journals %}
|
{% if issue.redmine.journals is defined %}
|
||||||
{% if journal.notes != "" %}
|
{% for journal in issue.redmine.journals %}
|
||||||
<div class="card">
|
{% if journal.notes != "" %}
|
||||||
<div class="card-header">
|
<div class="card">
|
||||||
<strong>Auteur =</strong> {{journal.user.name}}</strong><br>
|
<div class="card-header">
|
||||||
<small class="text-muted">Créé le =</strong>{{ journal.created_on|date('d/m/Y H:i') }}</small>
|
<strong>Auteur =</strong> {{journal.user.name}}</strong><br>
|
||||||
|
<small class="text-muted">Créé le =</strong>{{ journal.created_on|date('d/m/Y H:i') }}</small>
|
||||||
|
</div>
|
||||||
|
<div class="card-body">
|
||||||
|
{{ journal.notes |textile_to_html|raw }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
{% endif %}
|
||||||
{{ journal.notes |textile_to_html|raw }}
|
{% endfor %}
|
||||||
</div>
|
{% endif %}
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
{{dump(issue)}}
|
{{dump(issue)}}
|
||||||
|
|
||||||
|
|
||||||
<br><br>
|
<br><br>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user