svg
This commit is contained in:
@ -17,7 +17,7 @@ class TextileExtension extends AbstractExtension
|
|||||||
|
|
||||||
public function textileToHtml(string $text): string
|
public function textileToHtml(string $text): string
|
||||||
{
|
{
|
||||||
$text = $this->fixTextileTable($text);
|
// $text = $this->fixTextileTable($text);
|
||||||
$parser = new Parser();
|
$parser = new Parser();
|
||||||
|
|
||||||
return $parser->parse($text);
|
return $parser->parse($text);
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
<strong>Sprint :</strong> Aucun (Position {{ issue.redmine.sprint.position }})<br>
|
<strong>Sprint :</strong> Aucun (Position {{ issue.redmine.sprint.position }})<br>
|
||||||
{% endif %}
|
{% 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>
|
<strong>Story Point :</strong> {{issue.redmine.sprint.story_points}}<br>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -43,7 +44,7 @@
|
|||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<hr>
|
<hr>
|
||||||
<strong>Description :</strong>
|
<strong>Description :</strong>
|
||||||
<p>{{ issue.redmine.description|textile_to_html|markdown_to_html }}</p>
|
<p>{{ issue.redmine.description|textile_to_html|raw }}</p>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
@ -69,9 +70,6 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{{dump(issue.project.redmine)}}
|
|
||||||
{{dump(issue.redmine)}}
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
<br><br>
|
||||||
</div>
|
</div>
|
||||||
|
@ -52,7 +52,7 @@
|
|||||||
padding: 15px 10px 0px 10px;
|
padding: 15px 10px 0px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
.statusCard h2 {
|
||||||
font-size:18px;
|
font-size:18px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
@ -110,6 +110,25 @@
|
|||||||
zoom: 70%;
|
zoom: 70%;
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.issueContainer table {
|
||||||
|
width:100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
border-collapse: collapse;
|
||||||
|
font-family: sans-serif;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
th, td {
|
||||||
|
padding: 8px 12px;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user