{% extends 'generic/object.html' %}
{% load i18n %}
{% load static %}
{% block extra_controls %}
{% if perms.core.add_job %}
{% if object.enabled %}
{% else %}
{% endif %}
{% endif %}
{% endblock extra_controls %}
{% block content %}
| Name |
{{ object.name }} |
| Site |
{% if object.site %}
{{ object.site }}
{% else %}—{% endif %}
|
| Tenant |
{% if object.tenant %}
{{ object.tenant }}
{% else %}—{% endif %}
|
| IP Address |
{{ object.ip_address }}
|
| Port |
{{ object.port }} |
| Username |
{{ object.username }} |
| Mode |
{% if object.mode == 'cluster' %}
Cluster
{% elif object.mode == 'standalone' %}
Standalone
{% elif object.mode == 'undefined' %}
Undefined
Sync this endpoint to discover cluster mode.
{% else %}
{{ object.get_mode_display }}
{% endif %}
|
| Environment |
{% if object.environment == 'production' %}
Production
{% elif object.environment == 'staging' %}
Staging
{% elif object.environment == 'development' %}
Development
{% elif object.environment == 'homologation' %}
Homologation
{% elif object.environment == 'testing' %}
Testing
{% elif object.environment == 'lab' %}
Lab
{% else %}
—
{% endif %}
|
| Target |
Loading...
|
| Authentication |
Loading...
|
| API Access |
Loading...
|
{% include 'inc/panels/custom_fields.html' %}
{% for row in overwrite_rows %}
| {{ row.label }} |
{% if row.value %}
Yes
{% else %}
No
{% endif %}
{% if row.is_override %}
override
{% else %}
global
{% endif %}
|
{% endfor %}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% endblock %}