mirror of
https://github.com/netbox-community/netbox.git
synced 2026-02-04 14:26:25 -06:00
8 lines
343 B
HTML
8 lines
343 B
HTML
{% load i18n %}
|
|
<span{% if name %} id="attr_{{ name }}"{% endif %}{% if style %} class="{{ style }}"{% endif %}>{{ value }}</span>
|
|
{% if copy_button %}
|
|
<a class="btn btn-sm btn-primary copy-content" data-clipboard-target="#attr_{{ name }}" title="{% trans "Copy to clipboard" %}">
|
|
<i class="mdi mdi-content-copy"></i>
|
|
</a>
|
|
{% endif %}
|