mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
15 lines
464 B
HTML
15 lines
464 B
HTML
{% extends '_base.html' %}
|
|
{% load render_table from django_tables2 %}
|
|
|
|
{% block content %}
|
|
<h1>{% block title %}Import Completed{% endblock %}</h1>
|
|
{% render_table table %}
|
|
<a href="{{ request.path }}" class="btn btn-primary">
|
|
<span class="fa fa-download" aria-hidden="true"></span>
|
|
Import more
|
|
</a>
|
|
{% if return_url %}
|
|
<a href="{% url return_url %}" class="btn btn-default">View All</a>
|
|
{% endif %}
|
|
{% endblock %}
|