2020-04-10 10:21:02 -04:00
|
|
|
{% extends 'base.html' %}
|
2016-03-01 11:23:03 -05:00
|
|
|
|
|
|
|
{% block content %}
|
2017-05-03 15:27:26 -04:00
|
|
|
<h1>{% block title %}Import Completed{% endblock %}</h1>
|
2017-05-16 16:19:55 -04:00
|
|
|
{% include 'responsive_table.html' %}
|
2017-05-03 15:27:26 -04:00
|
|
|
<a href="{{ request.path }}" class="btn btn-primary">
|
|
|
|
<span class="fa fa-download" aria-hidden="true"></span>
|
|
|
|
Import more
|
|
|
|
</a>
|
|
|
|
{% if return_url %}
|
2018-07-02 11:54:41 -04:00
|
|
|
<a href="{{ return_url }}" class="btn btn-default">View All</a>
|
2017-05-03 15:27:26 -04:00
|
|
|
{% endif %}
|
2016-03-01 11:23:03 -05:00
|
|
|
{% endblock %}
|