svg
This commit is contained in:
@@ -7,6 +7,8 @@ cd ${DIR}
|
|||||||
cd ../..
|
cd ../..
|
||||||
DIR=$(pwd)
|
DIR=$(pwd)
|
||||||
|
|
||||||
|
bin/console cache:clear --env=dev
|
||||||
|
bin/console cache:clear --env=prod
|
||||||
bin/console d:s:u --force --complete
|
bin/console d:s:u --force --complete
|
||||||
bin/console app:init
|
bin/console app:init
|
||||||
|
|
||||||
|
@@ -64,7 +64,7 @@
|
|||||||
<div class="card mt-3">
|
<div class="card mt-3">
|
||||||
<div class="card-header">Pad du Group</div>
|
<div class="card-header">Pad du Group</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
{{ group.description ? group.description|markdown_to_html : "" }}
|
{{ group.description ? group.description|markdown_to_html|nl2br : "" }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -64,8 +64,8 @@
|
|||||||
<a href="{{ path(routeupdateoption,{idproject:project.id,id:option.id}) }}" class="me-2"><i class="fas fa-file fa-2x"></i></a>
|
<a href="{{ path(routeupdateoption,{idproject:project.id,id:option.id}) }}" class="me-2"><i class="fas fa-file fa-2x"></i></a>
|
||||||
</td>
|
</td>
|
||||||
<td>{{option.title}}</td>
|
<td>{{option.title}}</td>
|
||||||
<td>{{option.whyYes?option.whyYes|markdown_to_html:""}}</td>
|
<td>{{option.whyYes?option.whyYes|markdown_to_html|nl2br:""}}</td>
|
||||||
<td>{{option.whyNot?option.whyNot|markdown_to_html:""}}</td>
|
<td>{{option.whyNot?option.whyNot|markdown_to_html|nl2br:""}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
@@ -112,11 +112,11 @@
|
|||||||
<div style="display:flex;">
|
<div style="display:flex;">
|
||||||
<div style="flex:auto; padding:10px;">
|
<div style="flex:auto; padding:10px;">
|
||||||
<center><i class="fas fa-plus"></i></center>
|
<center><i class="fas fa-plus"></i></center>
|
||||||
{{option.whyYes?option.whyYes|markdown_to_html:""}}
|
{{option.whyYes?option.whyYes|markdown_to_html|nl2br:""}}
|
||||||
</div>
|
</div>
|
||||||
<div style="flex:auto; padding:10px;">
|
<div style="flex:auto; padding:10px;">
|
||||||
<center><i class="fas fa-minus"></i></center>
|
<center><i class="fas fa-minus"></i></center>
|
||||||
{{option.whyNot?option.whyNot|markdown_to_html:""}}
|
{{option.whyNot?option.whyNot|markdown_to_html|nl2br:""}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -125,7 +125,7 @@
|
|||||||
<div class="card mt-3">
|
<div class="card mt-3">
|
||||||
<div class="card-header">Description du Projet</div>
|
<div class="card-header">Description du Projet</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
{{ project.description ? project.description|markdown_to_html : "" }}
|
{{ project.description ? project.description|markdown_to_html|nl2br: "" }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user