{% extends 'generic/object.html' %}
{% load helpers %}
{% load humanize %}
{% load plugins %}
{% block title %}{{ object.name }}{% endblock %}
{% block breadcrumbs %}
{% if object.kind != None %}
{{ block.super }}
{{ object.hardware_type.manufacturer }} {{ object.hardware_type }}
{% endif %}
{% endblock %}
{% block content %}
Name |
{{ object.name|placeholder }} |
Status |
{% badge object.get_status_display bg_color=object.get_status_color %} |
Description |
{{ object.description|placeholder }} |
File name |
{{ object.file_name|placeholder }} |
File |
{{ object.file|placeholder }} |
{% include 'inc/panels/custom_fields.html' %}
{% plugin_left_page object %}
{% include 'inc/panels/comments.html' %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock content %}