瀏覽代碼

Ajout du tooltip en ligne/hors ligne

François Drouhard 5 年之前
父節點
當前提交
b69e742198
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      templates/videotheque/liste.html.twig

+ 2 - 2
templates/videotheque/liste.html.twig

@@ -71,9 +71,9 @@
 						<td>
 							{%  if film.authered is defined %}
 								{% if film.authered.activeNow %}
-									<i class="fa fa-user text-success"></i>
+									<i class="fa fa-user text-success" data-toggle="tooltip" title="En ligne"></i>
 								{% else %}
-									<i class="fa fa-user-o text-secondary"></i>
+									<i class="fa fa-user-o text-secondary" data-toggle="tooltip" title="Hors ligne"></i>
 								{% endif %}
 								{{ film.authered.username }}
 							{% endif %}