[fix] title (network id) is now only when hovering machine name (not whole card)
This commit is contained in:
parent
9d6b7f5809
commit
511d045362
|
@ -1,10 +1,10 @@
|
|||
<input type='text' class='searchbar' placeholder='Recherche'>
|
||||
|
||||
{% for machine in f_machines() %}
|
||||
<article class='inline-box' id='{{ machine.id_machine }}' title='{{ machine.ap | default('?') }} ({{ machine.ip | default('?') }})'>
|
||||
<article class='inline-box' id='{{ machine.id_machine }}'>
|
||||
|
||||
<span class='state' data-state='{{ f_getstate(machine.id_machine) }}'></span>
|
||||
<span class='title' style='color: {{ p_theme }}'>{{ machine.name }} <span>#{{ machine.name }}</span></span>
|
||||
<span class='title' style='color: {{ p_theme }}' title='{{ machine.ap | default('?') }} ({{ machine.ip | default('?') }})'>{{ machine.name }} <span>#{{ machine.name }}</span></span>
|
||||
<span class='link_remove' data-machine='{{ machine.id_machine }}'>{{ p_icon.remove | raw }}</span>
|
||||
|
||||
<span class='link_edit' data-machine='{{ machine.id_machine }}'>{{ p_icon.edit | raw }}</span>
|
||||
|
|
Loading…
Reference in New Issue