{% extends 'generic/object.html' %}
{% load helpers %}
{% block subtitle %}
{% endblock %}
{% block content %}
Name |
{{ object.name|placeholder }} |
UUID |
{{ object.uuid }} |
Device |
{% if object.device %}
{{ object.device|placeholder }} |
{% else %}
{{ object.device|placeholder }} |
{% endif %}
IP Address |
{% if object.ip %}
{{ object.ip|placeholder }} |
{% else %}
{{ object.ip|placeholder }} |
{% endif %}
Description |
{{ object.description|placeholder }} |
{% include 'inc/panels/comments.html' %}
Config Saved |
{{ object.config_status | placeholder }} |
Scheduled |
{{ status.scheduled | placeholder }}{% if status.scheduled %} ({{status.next_attempt}}){% endif %} |
Last Job |
{{ status.last_job.completed | placeholder }} |
Last Success |
{{ status.last_success | placeholder }} |
Last Change |
{{ status.last_change | placeholder }} |
{% endblock %}