mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
39 lines
1.4 KiB
HTML
39 lines
1.4 KiB
HTML
{% extends '_base.html' %}
|
|
{% load helpers %}
|
|
|
|
{% block title %}{{ report.name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<ol class="breadcrumb">
|
|
<li><a href="{% url 'extras:report_list' %}">Reports</a></li>
|
|
<li><a href="{% url 'extras:report_list' %}#module.{{ report.module }}">{{ report.module|bettertitle }}</a></li>
|
|
<li>{{ report.name }}</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
{% if perms.extras.add_reportresult %}
|
|
<div class="pull-right">
|
|
<form action="{% url 'extras:report_run' name=report.full_name %}" method="post">
|
|
{% csrf_token %}
|
|
{{ run_form }}
|
|
<button type="submit" name="_run" class="btn btn-primary"><i class="fa fa-play"></i> Run Report</button>
|
|
</form>
|
|
</div>
|
|
{% endif %}
|
|
<h1>{{ report.name }}{% include 'extras/inc/report_label.html' %}</h1>
|
|
<div class="row">
|
|
<div class="col-md-9">
|
|
{% if report.description %}
|
|
<p class="lead">{{ report.description }}</p>
|
|
{% endif %}
|
|
{% if report.result %}
|
|
<p>Last run: {{ report.result.created }}</p>
|
|
{% else %}
|
|
<p class="text-muted">Last run: Never</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|