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>
|
|
|
|
|
|
|
|
{% if not app.user.products |length %}
|
|
|
|
<div>
|
|
|
|
|
|
|
|
Créez facilement vos catégories de produits et vos produits juste en écrivant un nom par ligne dans
|
|
|
|
|
|
|
|
<a class="btn btn-success" href="{{ path('import') }}">l'interface d'importation simplifiée</a>
|
|
|
|
</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 %}
|