{% extends "base.html" %}
{% block title %}Completed CSV Import{% endblock %}
{% block metadata %}
<meta charset="utf-8">
<meta name="description" content="Completed adding the current CSV to the model">
<!-- other html tags here -->
{% endblock %}
{% block content %}
<script type="application/javascript">
$(window).bind("pageshow", function(event) {
if (event.originalEvent.persisted) {
window.location.reload();
}
});
</script>
<h1>CSV added to model</h1>
<ul>
{% for csv_record in record_list %}
<li>{{ csv_record }}</li>
{% endfor %}
</ul>
{% endblock content %}