1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

migrate templates to bootstrap 5

This commit is contained in:
checktheroads
2021-04-18 16:42:28 -07:00
parent 4b0d5815c0
commit f7c1bc71d9
39 changed files with 462 additions and 473 deletions

View File

@@ -1,13 +1,14 @@
{% extends 'base.html' %}
{% extends 'layout.html' %}
{% block title %}Import Completed{% endblock %}
{% block content %}
<h1>{% block title %}Import Completed{% endblock %}</h1>
{% include 'responsive_table.html' %}
{% if return_url %}
<a href="{{ return_url }}" class="btn btn-outline-dark">View All</a>
{% endif %}
<a href="{{ request.path }}" class="btn btn-primary">
<span class="mdi mdi-database-import-outline" aria-hidden="true"></span>
Import more
Import More
</a>
{% if return_url %}
<a href="{{ return_url }}" class="btn btn-default">View All</a>
{% endif %}
{% endblock %}