caisse-bliss/app/Resources/views/logged/angular/messages.html.twig

43 lines
1.3 KiB
Twig
Raw Normal View History

2018-04-06 15:43:14 +02:00
{% verbatim %}
<div id="messages">
<div id="no-categories" class="alert alert-info" ng-if="!categories.length">
<i class="fa fa-info"></i>
Vous n'avez pas encore enregistré de <strong>catégorie de produit</strong>, ajoutez-en donc.
</div>
<div id="no-products" class="alert alert-info" ng-if="!productsFromDB.length">
<i class="fa fa-info"></i>
Vous n'avez pas encore enregistré de <strong>produit</strong>, ajoutez-en donc.
</div>
2018-04-19 15:08:13 +02:00
{% endverbatim %}
2018-04-19 15:53:29 +02:00
<div>
{% if app.user.activeFestival is null %}
<div id="no-products" class="alert alert-info" ng-if="!productsFromDB.length">
<i class="fa fa-info"></i>
Sélectionnez un <strong>festival</strong> pour grouper vos ventes clients par évènement.
</div>
{% endif %}
</div>
2018-05-08 15:21:38 +02:00
{% if not (app.user.products |length) %}
2018-05-22 16:38:51 +02:00
<div class="alert alert-info" ng-if="!productsFromDB.length && initLoadDone">
2018-04-19 15:53:29 +02:00
2018-05-08 15:21:38 +02:00
<i class="fa fa-info"></i>
2018-04-19 15:53:29 +02:00
Créez facilement vos catégories de produits et vos produits juste en écrivant un nom par ligne dans
2018-05-08 15:21:38 +02:00
<a class="link" href="{{ path('import') }}">
<button>
l'interface d'importation simplifiée
</button>
</a>
2018-04-19 15:53:29 +02:00
</div>
<hr>
{% endif %}
2018-04-19 15:08:13 +02:00
{% verbatim %}
2018-04-06 15:43:14 +02:00
<!--end messages warning-->
</div>
{% endverbatim %}