pflaenz.li-Symfony/templates/user/wish.html.twig

40 lines
1 KiB
Twig
Raw Normal View History

2021-05-04 11:52:20 +02:00
{% extends 'base.html.twig' %}
{% block title %}Whishlist{% endblock %}
{% block body %}
{% for message in app.flashes('success') %}
<div class="alert alert-success" role="alert">
{{ message }}
</div>
{% endfor %}
<div class="mb-3">
2021-05-04 12:19:08 +02:00
<h1>Your Wishlist</h1>
2021-05-04 11:52:20 +02:00
</div>
<div class="mb-3">
{% if wishes == [] %}
<div class="alert alert-warning" role="alert">
There are currently no wishes!
</div>
{% else %}
<ul class="list-group">
{% for wish in wishes %}
2021-05-05 21:58:55 +02:00
<li class="list-group-item d-flex justify-content-between align-items-center"> {{ wish.title }}
<span>
<a href="{{ path('delete_wish', {'id': wish.id}) }}"><button class="btn btn-danger">Delete</button></a>
</span>
</li>
2021-05-04 11:52:20 +02:00
{% endfor %}
</ul>
{% endif %}
</div>
<hr>
2021-05-05 21:58:55 +02:00
<div class="mb-3">
2021-05-04 11:52:20 +02:00
<h3><i class="fas fa-star"></i> New wish</h3>
{{ form(wish_form) }}
</div>
{% endblock %}