{% extends 'generic/object.html' %} {% load helpers %} {% load i18n %} {% block content %} {% include 'netbox_map/inc/beta_banner.html' %}
{% trans "Template" %}
{% trans "Name" %}{{ object.name }}
{% trans "Group" %}{% if object.group %}{{ object.group }}{% else %}—{% endif %}
{% trans "Description" %}{{ object.description|placeholder }}
{% trans "Name Format" %}{{ object.name_format }}
{% trans "Deploy" %} {% trans "Deploy to Hosts" %}

{% trans "Deploy this template to one or more devices. A new application instance will be created for each host using the template defaults." %}

{% trans "Deployed Instances" %} {{ deployments|length }}
{% if deployments %}
{% for dep in deployments %} {% endfor %}
{% trans "Application" %} {% trans "Host" %} {% trans "Role" %}
{{ dep.application }} {% if dep.host %}{{ dep.host }}{% else %}—{% endif %} {{ dep.get_role_display }}
{% else %}
{% trans "No instances deployed yet." %}
{% endif %}
{% trans "Defaults" %}
{% trans "Status" %}{{ object.get_default_status_display }}
{% trans "Criticality" %}{{ object.get_default_criticality_display }}
{% trans "Environment" %}{{ object.get_default_environment_display }}
{% trans "Version" %}{{ object.default_version|placeholder }}
{% trans "Role" %}{{ object.get_default_role_display }}
{% trans "Port" %}{{ object.default_port|placeholder }}
{% trans "Protocol" %}{{ object.default_protocol|placeholder }}
{% include 'inc/panels/tags.html' %}
{% endblock %}