{% extends "generic/object.html" %} {% load render_table from django_tables2 %} {% load plugins %} {% load i18n %} {% load helpers %} {% block content %}
Credential Details
Type {% badge object.get_credential_type_display bg_color=object.get_credential_type_color %}
Username / Service Account {{ object.username }}
Owner {{ object.owner }}
Used By {{ object.used_by }}
{% if object.credential_storage %}
Credential Storage
{{ object.credential_storage }}
{% endif %}
Description
{% if object.description %} {{ object.description|markdown }} {% else %} {% trans "None" %} {% endif %}
{% include "inc/panels/custom_fields.html" %} {% plugin_left_page object %}
{% include "inc/panels/tags.html" %} {% include "inc/panels/comments.html" %} {% plugin_right_page object %}
{% trans "Devices" %}
{% if device_ids %} {% htmx_table 'dcim:device_list' id=device_ids %} {% else %}

{% trans "No devices available." %}

{% endif %}
{% trans "Virtual Machines" %}
{% if virtual_machine_ids %} {% htmx_table 'virtualization:virtualmachine_list' id=virtual_machine_ids %} {% else %}

{% trans "No Virtual Machines available." %}

{% endif %}
{% plugin_full_width_page object %}
{% endblock content %}