{% extends 'generic/object.html' %}
{% load buttons %}
{% load static %}
{% load helpers %}
{% load plugins %}
{% load i18n %}
{% block extra_controls %}
Create Login Credentials
{{ block.super }}
{% endblock %}
{% load render_table from django_tables2 %}
{% block content %}
Contact |
{{ object.contact|linkify|placeholder }}
|
Public Key |
{{ object.raw_ssh_key |placeholder }} |
Current Status |
{% badge object.get_ssh_key_current_status_display bg_color=object.get_ssh_key_current_status_color %} |
Desired Status |
{% badge object.get_ssh_key_desired_status_display bg_color=object.get_ssh_key_desired_status_color %} |
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
Key Type |
{% badge object.get_key_type_display bg_color=object.get_key_type_color %} |
Key Comment |
{{ object.key_comment |placeholder }} |
Encoded Key |
{{ object.encoded_key |placeholder }} |
{% include 'inc/panels/custom_fields.html' %}
{% endblock content %}