18 lines
494 B
HTML
18 lines
494 B
HTML
{% extends 'hr_module_base.html' %}
|
|
|
|
{% load static %}
|
|
|
|
{% block action_panel %}
|
|
<link rel="stylesheet" href="{% static '/css/hr_import_validation.css' %}">
|
|
<div class="import_instructions">The following data will be imported:
|
|
</div>
|
|
<div class="import_table">
|
|
{{ df_html|safe }}
|
|
</div>
|
|
<form method="post" enctype="multipart/form-data" >
|
|
{% csrf_token %}
|
|
<input type="submit" value="Confirm import" name="import_insert">
|
|
</form>
|
|
|
|
{% endblock %}
|