mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-15 04:49:36 -06:00
11 lines
446 B
HTML
11 lines
446 B
HTML
{% load i18n %}
|
|
|
|
<div class="d-flex">
|
|
<button class="btn color-mode-toggle hide-theme-dark" title="{% trans "Enable dark mode" %}" data-bs-toggle="tooltip" data-bs-placement="bottom">
|
|
<i class="mdi mdi-lightbulb"></i>
|
|
</button>
|
|
<button class="btn color-mode-toggle hide-theme-light" title="{% trans "Enable light mode" %}" data-bs-toggle="tooltip" data-bs-placement="bottom">
|
|
<i class="mdi mdi-lightbulb-on"></i>
|
|
</button>
|
|
</div>
|