| {% trans "Physical Address" %} |
-
+ |
{% if object.physical_address %}
- {% if config.MAPS_URL %}
-
- {% endif %}
{{ object.physical_address|linebreaksbr }}
+ {% if config.MAPS_URL %}
+
+ {% trans "Map" %}
+
+ {% endif %}
{% else %}
{{ ''|placeholder }}
{% endif %}
diff --git a/netbox/templates/generic/_base.html b/netbox/templates/generic/_base.html
index eaab642e964..4437a62a42c 100644
--- a/netbox/templates/generic/_base.html
+++ b/netbox/templates/generic/_base.html
@@ -6,16 +6,16 @@
{% block page-header %}
-
+
{# Title #}
-
+
{% block title %}{% endblock title %}
{% block subtitle %}{% endblock %}
{# Controls #}
-
+
{% block controls %}
{% block control-buttons %}{% endblock %}
diff --git a/netbox/templates/generic/object.html b/netbox/templates/generic/object.html
index 9220d136538..597898baf00 100644
--- a/netbox/templates/generic/object.html
+++ b/netbox/templates/generic/object.html
@@ -57,7 +57,7 @@ Context:
{% endblock subtitle %}
{% block controls %}
-
+
{% plugin_buttons object %}
{# Add/edit/delete/etc. buttons #}
diff --git a/netbox/templates/inc/paginator.html b/netbox/templates/inc/paginator.html
index 0a9128034b7..de680127678 100644
--- a/netbox/templates/inc/paginator.html
+++ b/netbox/templates/inc/paginator.html
@@ -43,7 +43,7 @@
{{ p }}
{% elif p %}
-
+
{{ p }}
{% else %}
diff --git a/netbox/templates/inc/panel_table.html b/netbox/templates/inc/panel_table.html
index 2abad8e3cfc..8390849b393 100644
--- a/netbox/templates/inc/panel_table.html
+++ b/netbox/templates/inc/panel_table.html
@@ -5,11 +5,11 @@
{% if heading %}
{% endif %}
-
- {% if table.rows %}
+ {% if table.rows %}
+
{% render_table table 'inc/table.html' %}
- {% else %}
- {% trans "None" %}
- {% endif %}
-
+
+ {% else %}
+ {% trans "None" %}
+ {% endif %}
diff --git a/netbox/templates/inc/panels/custom_fields.html b/netbox/templates/inc/panels/custom_fields.html
index 1cda049cea2..7743f6fd99d 100644
--- a/netbox/templates/inc/panels/custom_fields.html
+++ b/netbox/templates/inc/panels/custom_fields.html
@@ -5,14 +5,16 @@
{% if custom_fields %}
- {% for group_name, fields in custom_fields.items %}
- {% if group_name %}
- {{ group_name }}
- {% endif %}
-
+
+ {% for group_name, fields in custom_fields.items %}
+ {% if group_name %}
+
+ | {{ group_name }} |
+
+ {% endif %}
{% for field, value in fields.items %}
- | {{ field }}
+ | {{ field }}
{% if field.description %}
|
{% endfor %}
-
- {% endfor %}
+ {% endfor %}
+
{% endif %}
{% endwith %}
diff --git a/netbox/templates/inc/table_controls_htmx.html b/netbox/templates/inc/table_controls_htmx.html
index 7975bacf474..3b1417cddb6 100644
--- a/netbox/templates/inc/table_controls_htmx.html
+++ b/netbox/templates/inc/table_controls_htmx.html
@@ -3,12 +3,14 @@
{% if request.user.is_authenticated and table_modal %}
diff --git a/netbox/templates/inc/user_menu.html b/netbox/templates/inc/user_menu.html
index e5c560b11fe..5beca96dc3f 100644
--- a/netbox/templates/inc/user_menu.html
+++ b/netbox/templates/inc/user_menu.html
@@ -33,7 +33,7 @@
{% else %}
-
+
{% trans "Log In" %}
diff --git a/netbox/templates/ipam/ipaddress_edit.html b/netbox/templates/ipam/ipaddress_edit.html
index 93045761fed..d9157f5ef5b 100644
--- a/netbox/templates/ipam/ipaddress_edit.html
+++ b/netbox/templates/ipam/ipaddress_edit.html
@@ -36,7 +36,7 @@
-
+
-
|