Files
ninedad/templates/home/home.html.twig

28 lines
842 B
Twig
Raw Normal View History

2025-07-28 17:10:56 +02:00
{% extends 'base.html.twig' %}
2025-08-03 22:42:14 +02:00
2025-07-28 17:10:56 +02:00
{%block body%}
<h2>Projets</h2>
2025-08-03 22:42:14 +02:00
<div class='d-flex' style='justify-content: left'>
2025-07-28 17:10:56 +02:00
{% for project in projects %}
2025-08-03 22:42:14 +02:00
<div class='card' style='width:300px'>
<div class='card-header d-flex justify-content-between align-items-center'>
{{project.title}}
<div>
{% if is_granted('EDIT', project) %}
<button type="button" class="btn btn-primary btn-sm"><i class="fas fa-pencil"></i></button>
{% endif %}
<button type="button" class="btn btn-secondary btn-sm"><i class="fas fa-eye"></i></button>
</div>
</div>
<div class='card-body'>
</div>
2025-07-28 17:10:56 +02:00
</div>
{% endfor %}
</div>
{%endblock%}