Device |
{{ object.device }} |
Date Created |
{{ object.created }} |
Plan Type |
{{ object.plan_type | title }} |
Features |
{% if object.feature.exists %}
{% for feature in object.feature.all %}
- {{ feature }}
{% endfor %}
{% else %}
{{ None | placeholder }}
{% endif %}
|
Change Control ID |
{{ object.change_control_id | placeholder }} |
Change Control URL |
{{ object.change_control_url|placeholder }} |
Plan Result |
{{ object.plan_result.status|title }} |
Deploy Result |
{% if object.deploy_result %}
{{ object.deploy_result.status|title }}
{% else %}
| {{ object.deploy_result|placeholder }} |
{% endif %}
Status |
{{ object.get_status_display }}
|