|
41 | 41 | {% trans %}Select items to perform actions on them.{% endtrans %} |
42 | 42 | </div> |
43 | 43 | <div class="dynamic-buttons"> |
44 | | - <button title="{% trans %}Duplicate selected{% endtrans %}" aria-label="{% trans %}Duplicate{% endtrans %}" class="duplicate-button btn btn-default btn-xs">{% trans %}Duplicate{% endtrans %}</button> |
45 | | - <button title="{% trans %}Rename selected{% endtrans %}" aria-label="{% trans %}Rename{% endtrans %}" class="rename-button btn btn-default btn-xs">{% trans %}Rename{% endtrans %}</button> |
46 | | - <button title="{% trans %}Move selected{% endtrans %}" aria-label="{% trans %}Move{% endtrans %}" class="move-button btn btn-default btn-xs">{% trans %}Move{% endtrans %}</button> |
47 | | - <button title="{% trans %}Download selected{% endtrans %}" aria-label="{% trans %}Download{% endtrans %}" class="download-button btn btn-default btn-xs">{% trans %}Download{% endtrans %}</button> |
48 | | - <button title="{% trans %}Shutdown selected notebook(s){% endtrans %}" aria-label="{% trans %}Shutdown{% endtrans %}" class="shutdown-button btn btn-default btn-xs btn-warning">{% trans %}Shutdown{% endtrans %}</button> |
49 | | - <button title="{% trans %}View selected{% endtrans %}" aria-label="{% trans %}View{% endtrans %}" class="view-button btn btn-default btn-xs">{% trans %}View{% endtrans %}</button> |
50 | | - <button title="{% trans %}Edit selected{% endtrans %}" aria-label="{% trans %}Edit{% endtrans %}" class="edit-button btn btn-default btn-xs">{% trans %}Edit{% endtrans %}</button> |
51 | | - <button title="{% trans %}Delete selected{% endtrans %}" aria-label="{% trans %}Delete selected{% endtrans %}" class="delete-button btn btn-default btn-xs btn-danger"><i class="fa fa-trash"></i></button> |
| 44 | + <button title="{% trans %}Duplicate selected{% endtrans %}" aria-label="{% trans %}Duplicate selected{% endtrans %}" class="duplicate-button btn btn-default btn-xs" aria-describedby="tooltip1">{% trans %}Duplicate{% endtrans %} </button> |
| 45 | + <div role="tooltip" id="tooltip1" >{% trans %}Duplicate selected{% endtrans %}</div> |
| 46 | + <button title="{% trans %}Rename selected{% endtrans %}" aria-label="{% trans %}Rename selected{% endtrans %}" class="rename-button btn btn-default btn-xs" aria-describedby="tooltip2">{% trans %}Rename{% endtrans %}</button> |
| 47 | + <div role="tooltip" id="tooltip2" >{% trans %}Rename selected{% endtrans %}</div> |
| 48 | + <button title="{% trans %}Move selected{% endtrans %}" aria-label="{% trans %}Move selected{% endtrans %}" class="move-button btn btn-default btn-xs" aria-describedby="tooltip3">{% trans %}Move{% endtrans %}</button> |
| 49 | + <div role="tooltip" id="tooltip3" >{% trans %}Move selected{% endtrans %}</div> |
| 50 | + <button title="{% trans %}Download selected{% endtrans %}" aria-label="{% trans %}Download selected{% endtrans %}" class="download-button btn btn-default btn-xs" aria-describedby="tooltip4">{% trans %}Download{% endtrans %}</button> |
| 51 | + <div role="tooltip" id="tooltip4" >{% trans %}Download selected{% endtrans %}</div> |
| 52 | + <button title="{% trans %}Shutdown selected notebook(s){% endtrans %}" aria-label="{% trans %}Shutdown selected notebook(s){% endtrans %}" class="shutdown-button btn btn-default btn-xs btn-warning" aria-describedby="tooltip5">{% trans %}Shutdown{% endtrans %}</button> |
| 53 | + <div role="tooltip" id="tooltip5" >{% trans %}Shutdown selected notebook(s){% endtrans %}</div> |
| 54 | + <button title="{% trans %}View selected{% endtrans %}" aria-label="{% trans %}View selected{% endtrans %}" class="view-button btn btn-default btn-xs" aria-describedby="tooltip6">{% trans %}View{% endtrans %}</button> |
| 55 | + <div role="tooltip" id="tooltip6" >{% trans %}View selected{% endtrans %}</div> |
| 56 | + <button title="{% trans %}Edit selected{% endtrans %}" aria-label="{% trans %}Edit selected{% endtrans %}" class="edit-button btn btn-default btn-xs" aria-describedby="tooltip7">{% trans %}Edit{% endtrans %}</button> |
| 57 | + <div role="tooltip" id="tooltip7" >{% trans %}Edit selected{% endtrans %}</div> |
| 58 | + <button title="{% trans %}Delete selected{% endtrans %}" aria-label="{% trans %}Delete selected{% endtrans %}" class="delete-button btn btn-default btn-xs btn-danger" aria-describedby="tooltip8"> |
| 59 | + <i class="fa fa-trash"></i> |
| 60 | + </button> |
| 61 | + <div role="tooltip" id="tooltip8" >{% trans %}Delete selected{% endtrans %}</div> |
52 | 62 | </div> |
53 | 63 | </div> |
54 | 64 | <div class="col-sm-4 no-padding tree-buttons"> |
|
205 | 215 |
|
206 | 216 | {% block script %} |
207 | 217 | {{super()}} |
208 | | - |
| 218 | + <script type="text/javascript"> |
| 219 | + ('#element').tooltip('enable') |
| 220 | + </script> |
209 | 221 |
|
210 | 222 | <script src="{{ static_url("tree/js/main.min.js") }}" type="text/javascript" charset="utf-8"></script> |
| 223 | + |
211 | 224 | {% endblock %} |
0 commit comments