Jeremy Stretch 5 лет назад
Родитель
Сommit
b9af6ef841

+ 1 - 1
netbox/templates/dcim/inc/rack_elevation.html

@@ -3,6 +3,6 @@
 </div>
 </div>
 <div class="text-center text-small">
 <div class="text-center text-small">
     <a href="{% url 'dcim-api:rack-elevation' pk=rack.pk %}?face={{face}}&render=svg">
     <a href="{% url 'dcim-api:rack-elevation' pk=rack.pk %}?face={{face}}&render=svg">
-        <i class="mdi mdi-database-import-outline"></i> Save SVG
+        <i class="mdi mdi-content-save-outline"></i> Save SVG
     </a>
     </a>
 </div>
 </div>

+ 6 - 2
netbox/templates/ipam/inc/toggle_available.html

@@ -2,8 +2,12 @@
 {% if show_available is not None %}
 {% if show_available is not None %}
     <div class="pull-right">
     <div class="pull-right">
         <div class="btn-group" role="group">
         <div class="btn-group" role="group">
-            <a href="{{ request.path }}{% querystring request show_available='true' %}" class="btn btn-default{% if show_available %} active disabled{% endif %}">Show available</a>
-            <a href="{{ request.path }}{% querystring request show_available='false' %}" class="btn btn-default{% if not show_available %} active disabled{% endif %}">Hide available</a>
+            <a href="{{ request.path }}{% querystring request show_available='true' %}" class="btn btn-default{% if show_available %} active disabled{% endif %}">
+              <i class="mdi mdi-eye-outline"></i> Show available
+            </a>
+            <a href="{{ request.path }}{% querystring request show_available='false' %}" class="btn btn-default{% if not show_available %} active disabled{% endif %}">
+              <i class="mdi mdi-eye-off-outline"></i> Hide available
+            </a>
         </div>
         </div>
     </div>
     </div>
 {% endif %}
 {% endif %}