This commit is contained in:
2025-07-25 17:35:00 +02:00
parent fd00af0780
commit cd70a2ce55
2 changed files with 2 additions and 8 deletions

View File

@ -5,13 +5,12 @@
<div class='d-flex' style='justify-content: center'>
{% for project in projects %}
<div class='card'>
<a href='{{ path('app_project_view',{id:project.id})}}' class='d-flex' style='flex-direction: column; text-align: center'>
<img src='{{asset(project.logo)}}' style='width:250px'>
<a href='{{ path('app_project_view',{id:project.id})}}' class='d-flex' style='flex-direction: column; text-align: center; margin: 20px 80px 20px 80px;'>
<img src='{{asset(project.logo)}}' style='width:100px; margin-bottom:20px;'>
<h5>{{project.title}}</h5>
</a>
</div>
{% endfor %}
</div>
{%endblock%}

View File

@ -50,11 +50,6 @@
</div>
{% if mode=="update" %}
<div class="card mt-3">
<div class="card-header">Détail Redmine</div>
<div class="card-body">
</div>
</div>
{% endif %}
</div>