add loggers actions
This commit is contained in:
parent
59398d14ba
commit
12d4db370f
22 changed files with 517 additions and 218 deletions
|
@ -33,25 +33,42 @@
|
|||
{{ commerce.getCompletionPercentage() }}
|
||||
|
||||
<div class='p-2'>
|
||||
<h6>Infos manquantes :</h6>
|
||||
<ul class='list-unstyled mb-0'>
|
||||
{# <h6>Infos manquantes :</h6> #}
|
||||
<ul class='list-unstyled list-inline mb-0'>
|
||||
{% if not commerce.name %}
|
||||
<li><i class='bi bi-x-circle text-danger'></i> Nom du commerce</li>
|
||||
<span title="Nom du commerce">
|
||||
<i class='bi bi-person-badge text-danger'></i>
|
||||
</span>
|
||||
{% endif %}
|
||||
{% if not commerce.hasAddress() %}
|
||||
<li><i class='bi bi-x-circle text-danger'></i> Adresse complète</li>
|
||||
<span title="Adresse complète">
|
||||
<i class='bi bi-geo-alt text-danger'></i>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if not commerce.hasOpeningHours() %}
|
||||
<li><i class='bi bi-x-circle text-danger'></i> Horaires d'ouverture</li>
|
||||
<span title="Horaires d'ouverture">
|
||||
<i class='bi bi-clock text-danger'></i>
|
||||
</span>
|
||||
{% endif %}
|
||||
{% if not commerce.hasWebsite() %}
|
||||
<li><i class='bi bi-x-circle text-danger'></i> Site web</li>
|
||||
<span title="Site web">
|
||||
<i class='bi bi-globe text-danger'></i>
|
||||
</span>
|
||||
{% endif %}
|
||||
{# {% if not commerce.phone %}
|
||||
<li><i class='bi bi-x-circle text-danger'></i> Téléphone</li>
|
||||
<li title="Téléphone">
|
||||
<i class='bi bi-telephone text-danger'></i>
|
||||
</li>
|
||||
{% endif %} #}
|
||||
{% if not commerce.hasWheelchair() %}
|
||||
<li><i class='bi bi-x-circle text-danger'></i> Accessibilité PMR</li>
|
||||
<span title="Accessibilité PMR">
|
||||
<i class='bi bi-universal-access text-danger'></i>
|
||||
</span>
|
||||
{% endif %}
|
||||
{% if not commerce.siret %}
|
||||
<span title="SIRET">
|
||||
<i class='bi bi-book text-danger'></i>
|
||||
</span>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue