remove some typos

This commit is contained in:
Kayn Ty 2018-05-08 15:21:38 +02:00
parent db6be9324d
commit 24dca67a4d
4 changed files with 15 additions and 23 deletions

View File

@ -3,25 +3,18 @@
<div class="loginland ">
<div class="login-choices">
<a href="{{ path('homepage') }}" class="btn btn-default logo-home pull-left">
<i class="fa fa-home"></i>
Caisse Bliss
</a>
{% if is_granted("IS_AUTHENTICATED_REMEMBERED") %}
<div class="row">
<div class="col-xs-9">
<div id="menu-dashboard">
<ul class="nav nav-pills pull-right">
<li>
<a class="btn {% if app.request.attributes.get('_route') == 'homepage' %}
btn-success
{% else %}
btn-default
{% endif %}" href="{{ path('homepage') }}" title="accueil Caisse">
<i class="fa fa-circle-o-notch "></i>
<a href="{{ path('homepage') }}" class="btn btn-default logo-home pull-left">
<i class="fa fa-home"></i>
Caisse Bliss
</a>
<li>
</li>
<li>
<a class="btn {% if app.request.attributes.get('_route') == 'dashboard' %}
btn-success
@ -124,7 +117,8 @@
<i class="fa fa-key"></i>
{{ 'layout.login'|trans }}</a>
<a class="btn btn-default"
href="{{ path('fos_user_registration_register') }}">{{ 'layout.register'|trans }}</a>
href="{{ path('fos_user_registration_register') }}">Inscription
</a>
</div>
{% endif %}
</div>

View File

@ -21,12 +21,17 @@
</div>
{% if not app.user.products |length %}
<div>
{% if not (app.user.products |length) %}
<div class="alert alert-info">
<i class="fa fa-info"></i>
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>
<a class="link" href="{{ path('import') }}">
<button>
l'interface d'importation simplifiée
</button>
</a>
</div>
<hr>
{% endif %}

View File

@ -1,6 +1,4 @@
{% verbatim %}
<button>tooltip example</button>
<button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Tooltip on top">Tooltip on top</button>
<div id="not_loaded" ng-if="!initLoadDone">
<div class="well">
<i class="fa fa-refresh fa-spin fa-3x"></i> Chargement en cours de vos produits

View File

@ -189,8 +189,3 @@ angular
$scope.fetchProductsFromDB();
})();
}]);
console.log('jQuery', jQuery);
jQuery(function () {
jQuery('[data-toggle="tooltip"]').tooltip();
console.log('jQuery(\'[data-toggle="tooltip"]\')', jQuery('[data-toggle="tooltip"]'));
});