import_success.html 551 B

1234567891011121314151617
  1. {% extends 'base/layout.html' %}
  2. {% load render_table from django_tables2 %}
  3. {% block title %}Import Completed{% endblock %}
  4. {% block content %}
  5. <div class="table-responsive">
  6. {% render_table table 'inc/table.html' %}
  7. </div>
  8. {% if return_url %}
  9. <a href="{{ return_url }}" class="btn btn-outline-dark">View All</a>
  10. {% endif %}
  11. <a href="{{ request.path }}" class="btn btn-primary">
  12. <span class="mdi mdi-database-import-outline" aria-hidden="true"></span>
  13. Import More
  14. </a>
  15. {% endblock content %}