svg
This commit is contained in:
1
templates/home/blank.html.twig
Normal file
1
templates/home/blank.html.twig
Normal file
@ -0,0 +1 @@
|
||||
{% extends 'base.html.twig' %}
|
@ -3,7 +3,8 @@
|
||||
|
||||
{% block body %}
|
||||
|
||||
<div class="d-flex justify-content-center">
|
||||
|
||||
<div class="d-flex justify-content-center mt-5">
|
||||
{% for accounting in accountings %}
|
||||
<div class="card" style="width:400px">
|
||||
<div class="card-body d-flex align-items-center">
|
||||
@ -11,7 +12,19 @@
|
||||
<i class="fas {{accounting.icon}} fa-4x"></i>
|
||||
</div>
|
||||
|
||||
<div class="p-3 fs-1">{{accounting.title}}</div>
|
||||
<div class="p-3 fs-1 d-flex flex-column flex-grow-1 align-items-center">
|
||||
<div>{{accounting.title}}</div>
|
||||
<div>{{accounting.solde}}€</div>
|
||||
|
||||
<div class="d-flex ">
|
||||
<a class="p-3" href="{{path('app_user_operation_submitwithaccounting',{id:accounting.id,direction:'credit'})}}">
|
||||
<i class="fas fa-minus bg-danger text-white rounded-circle fa-fw" style="height:60px; padding-top:7px;"></i>
|
||||
</a>
|
||||
<a class="p-3" href="{{path('app_user_operation_submitwithaccounting',{id:accounting.id,direction:'debit'})}}">
|
||||
<i class="fas fa-plus bg-success text-white rounded-circle fa-fw" style="height:60px; padding-top:7px;"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
@ -1 +1,4 @@
|
||||
<h2>Veuillez selectionner une compagnie</h2>
|
||||
{% extends 'base.html.twig' %}
|
||||
{%block body%}
|
||||
<h2>Veuillez selectionner une compagnie</h2>
|
||||
{%endblock%}
|
Reference in New Issue
Block a user