{% extends 'generic/object.html' %} {% load static %} {% load helpers %} {% load perms %} {% load plugins %} {% load render_table from django_tables2 %} {% load i18n %} {% load custom_object_utils %} {% block extra_controls %} {% if perms.netbox_custom_objects.change_customobjecttype %} {% trans "Add Field" %} {% endif %} {% endblock %} {% block content %}
| {% trans "Name" %} | {{ object.name }} |
|---|---|
| {% trans "Readable name" %} | {{ object.verbose_name }} |
| {% trans "Version" %} | {{ object.version }} |
| {% trans "Description" %} | {{ object.description|placeholder }} |
| {% trans "Last activity" %} |
{{ latest_change.time|isodatetime|placeholder }}
{% if latest_change %}
{{ latest_change.time|timesince }} {% trans "ago" %}
{% endif %}
|
| {{ group_name }} | ||||||
|---|---|---|---|---|---|---|
| {{ field }} | {{ field|get_field_type_verbose_name }} | {% if field.type == "object" or field.type == "multiobject" %}{{ field|get_field_object_type }}{% endif %} | {% if field.required %} {% endif %} | {% if field.unique %} {% endif %} | {% if field.primary %} {% endif %} | {toggle_text} |