{% extends 'base/layout.html' %} {% load static %} {% block content %}
{# Full Update Button#}
{% if perms.netbox_proxbox.add_proxmoxvm %} Proxmox Full Update {% endif %}

Proxbox Configuration

{% for px in configuration.netbox_proxbox.proxmox %}

Proxmox Logo
{% if px.domain %} {% else %} {% endif %} {% if px.http_port %} {% else %} {% endif %} {% if px.user %} {% else %} {% endif %} {% if px.password %} {% else %} {% endif %} {% if px.token.name %} {% else %} {% endif %} {% if px.token.value %} {% else %} {% endif %} {% if px.ssl %} {% else %} {% endif %}
Domain / IP{{ px.domain }}{{ default_config.proxmox.domain }} (default)
HTTP Port{{ px.http_port }}{{ default_config.proxmox.http_port }} (default)
Proxmox User{{ px.user }}{{ default_config.proxmox.user }} (default)
Proxmox Passwordpassword defined in configuration.py{{ default_config.proxmox.password }} (default)
Token Name{{ px.token.name }}{{ default_config.proxmox.token.name }} (default)
Token Value{{ px.token.value }}{{ default_config.proxmox.token.value }} (default)
SSL{{ px.ssl }}{{ default_config.proxmox.ssl }} (default)
{% if px.domain %}
Proxmox Update
{% else %} Proxmox Update {% endif %}
{% endfor %}

Netbox Logo
{% if px.netbox.domain %} {% else %} {% endif %} {% if px.netbox.http_port %} {% else %} {% endif %} {% if px.netbox.token %} {% else %} {% endif %} {% if px.netbox.ssl %} {% else %} {% endif %}
Domain / IP{{ px.netbox.domain }}{{ default_config.netbox.domain }} (default)
HTTP Port{{ px.netbox.http_port }}{{ default_config.netbox.http_port }} (default)
Token{{ px.netbox.token }}{{ default_config.netbox.token }} (default)
SSL{{ px.netbox.ssl }}{{ default_config.netbox.ssl }} (default)

Netbox Logo
{% if configuration.netbox_proxbox.fastapi.uvicorn_host %} {% else %} {% endif %} {% if configuration.netbox_proxbox.fastapi.uvicorn_port %} {% else %} {% endif %}
Uvicorn Host{{ configuration.netbox_proxbox.fastapi.uvicorn_host }}{{ default_config.fastapi.uvicorn_host }} (default)
Uvicorn Port{{ configuration.netbox_proxbox.fastapi.uvicorn_port }}{{ default_config.fastapi.uvicorn_port }} (default)


Configuration (PLUGINS_CONFIG)

{{ configuration_json }}

Default Config

{{ default_config_json }}
{% endblock %} {% block footer_links %} {{ block.super }} {% include "netbox_proxbox/footer.html" %} {% endblock %}