mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	* Reference database object by GFK when running scripts & reports via UI * Reference database object by GFK when running scripts & reports via API * Remove old enqueue_job() method * Enable filtering jobs by object * Introduce ObjectJobsView * Add tabbed views for report & script jobs * Add object_id to JobSerializer * Move generic relation to JobsMixin * Clean up old naming
		
			
				
	
	
		
			16 lines
		
	
	
		
			443 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			443 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'extras/report/base.html' %}
 | 
						|
{% load render_table from django_tables2 %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
  <div class="row mb-3">
 | 
						|
    <div class="col col-md-12">
 | 
						|
      <div class="card">
 | 
						|
        <div class="card-body table-responsive">
 | 
						|
          {% render_table table 'inc/table.html' %}
 | 
						|
          {% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
{% endblock %}
 |