forked from ScoDoc/ScoDoc
23 lines
683 B
Django/Jinja
23 lines
683 B
Django/Jinja
{% extends "apogee/apo_compare.j2" %}
|
|
|
|
{% block app_content %}
|
|
{{super()}}
|
|
|
|
<form id="apo_csv_add" action="apo_compare_csv" method="post" enctype="multipart/form-data">
|
|
<div class="apo_compare_csv_form_but">
|
|
Fichier Apogée A:
|
|
<input type="file" size="30" name="file_a"/>
|
|
</div>
|
|
<div class="apo_compare_csv_form_but">
|
|
Fichier Apogée B:
|
|
<input type="file" size="30" name="file_b"/>
|
|
</div>
|
|
<label>
|
|
<input type="checkbox" name="autodetect" checked/> autodétecter encodage
|
|
</label>
|
|
|
|
<div class="apo_compare_csv_form_submit">
|
|
<input type="submit" value="Comparer ces fichiers"/>
|
|
</div>
|
|
</form>
|
|
{% endblock %} |