update
This commit is contained in:
parent
c7868c6b4e
commit
da1210a862
15 changed files with 105 additions and 5 deletions
25
app/templates/import_file_selector.html
Normal file
25
app/templates/import_file_selector.html
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{% extends 'base.html' %}
|
||||
{% block title %}Split Line{% endblock title %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<main>
|
||||
<div class="container mt-5">
|
||||
<div class="card">
|
||||
<div class="card-header bg-primary text-white">
|
||||
Select file to import
|
||||
</div>
|
||||
<!-- Display Details Section -->
|
||||
<div class="card-body">
|
||||
{% for file in files %}
|
||||
<p><a href="{{url_for('upload_file_for_line_split', file_name=file, line_item_id=li.id)}}">{{file}}</a></p>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <script src="{{url_for('.static', filename='split_line.js')}}"></script> -->
|
||||
</main>
|
||||
{% endblock content %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue