{% load i18n %}
2 {% trans "Custom Objects" %}
{% if custom_objects_db_ready %} {% trans "Plugin ready" %} {% elif custom_objects_plugin_loaded %} {% trans "Migrations pending" %} {% else %} {% trans "Plugin not installed" %} {% endif %} {% blocktrans %}netbox-custom-objects — applies bundled portable schema (schema/nsm_portable_schema.json).{% endblocktrans %}
{% if custom_objects_plugin_loaded and not custom_objects_db_ready %}
{% trans "Run migrations before importing types:" %} migrate netbox_custom_objects
{% endif %}
{% csrf_token %}
{% for slug, cot in cot_status.items %} {% endfor %}
{% trans "Type" %} {% trans "Status" %}
{{ slug }} {% if cot %} {% trans "present" %} {% else %} {% trans "missing" %} {% endif %}
{% if all_cots_ok %}
{% trans "Section 2 complete." %}
{% endif %}