mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-13 15:22:16 -06:00
* Initial work on #19735 * Work in progress * Remove ClusterRemoveDevicesView (anti-pattern) * Misc cleanup * Fix has_bulk_actions * Fix has_bulk_actions for ObjectChildrenView * Restore clone button * Misc cleanup * Clean up custom bulk actions * Rename individual object actions * Collapse into a single template tag * Fix support for legacy action dicts * Rename bulk attr to multi * clone_button tag should fail silently if view name is invalid * Clean up action buttons * Fix export button label * Replace clone_button with an ObjectAction * Create object actions for adding device/VM components * Move core_sync.html to core app * Remove extra_bulk_buttons from template doc
98 lines
3.1 KiB
HTML
98 lines
3.1 KiB
HTML
{% extends 'generic/object.html' %}
|
|
{% load buttons %}
|
|
{% load helpers %}
|
|
{% load perms %}
|
|
{% load i18n %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ block.super }}
|
|
{% if object.object %}
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url 'core:job_list' %}?object_type={{ object.object_type_id }}">{{ object.object|meta:"verbose_name_plural"|bettertitle }}</a>
|
|
</li>
|
|
{% with parent_jobs_viewname=object.object|viewname:"jobs" %}
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url parent_jobs_viewname pk=object.object.pk %}">{{ object.object }}</a>
|
|
</li>
|
|
{% endwith %}
|
|
{% else %}
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url 'core:job_list' %}?name={{ object.name|urlencode }}">{{ object.name }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endblock breadcrumbs %}
|
|
|
|
{% block content %}
|
|
<div class="row mb-3">
|
|
<div class="col col-12 col-md-6">
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Job" %}</h2>
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">{% trans "Object Type" %}</th>
|
|
<td>
|
|
<a href="{% url 'core:job_list' %}?object_type={{ object.object_type_id }}">{{ object.object_type }}</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Name" %}</th>
|
|
<td>{{ object.name|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Status" %}</th>
|
|
<td>{% badge object.get_status_display object.get_status_color %}</td>
|
|
</tr>
|
|
{% if object.error %}
|
|
<tr>
|
|
<th scope="row">{% trans "Error" %}</th>
|
|
<td>{{ object.error }}</td>
|
|
</tr>
|
|
{% endif %}
|
|
<tr>
|
|
<th scope="row">{% trans "Created By" %}</th>
|
|
<td>{{ object.user|placeholder }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="col col-12 col-md-6">
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Scheduling" %}</h2>
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">{% trans "Created" %}</th>
|
|
<td>{{ object.created|isodatetime }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Scheduled" %}</th>
|
|
<td>
|
|
{{ object.scheduled|isodatetime|placeholder }}
|
|
{% if object.interval %}
|
|
({% blocktrans with interval=object.interval %}every {{ interval }} minutes{% endblocktrans %})
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Started" %}</th>
|
|
<td>{{ object.started|isodatetime|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Completed" %}</th>
|
|
<td>{{ object.completed|isodatetime|placeholder }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col col-12">
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Data" %}</h2>
|
|
<div class="card-body">
|
|
<pre>{{ object.data|json }}</pre>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|