mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
12 lines
334 B
HTML
12 lines
334 B
HTML
{% extends 'extras/report.html' %}
|
|
{% load helpers %}
|
|
{% load static %}
|
|
|
|
{% block content-wrapper %}
|
|
<div class="row px-3">
|
|
<div class="col col-md-12" hx-get="{% url 'extras:report_result' job_result_pk=result.pk %}" hx-trigger="every 3s">
|
|
{% include 'extras/htmx/report_result.html' %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|