mirror of
https://github.com/netbox-community/netbox.git
synced 2026-04-04 16:37:15 +02:00
16 lines
377 B
HTML
16 lines
377 B
HTML
{% extends "ui/panels/_base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block panel_content %}
|
|
<div class="card-body">
|
|
{% if value %}
|
|
<pre>{{ value }}</pre>
|
|
{% else %}
|
|
{% if show_sync_warning %}
|
|
{% include 'inc/sync_warning.html' %}
|
|
{% endif %}
|
|
<span class="text-muted">{% trans "None" %}</span>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock panel_content %}
|