Back to Netbox

Custom Fields

netbox/templates/extras/panels/custom_fields.html

4.6.1391 B
Original Source

{% extends "ui/panels/_base.html" %} {% load i18n %} {% block panel_content %}

{% for group_name, fields in custom_fields.items %} {% if group_name %} | {{ group_name }} | | --- | {% endif %} {% for field, value in fields.items %} | {{ field }} {% if field.description %} {% endif %} | {% customfield_value field value %} | {% endfor %} {% endfor %} {% endblock panel_content %}