{% extends "cephia/base.html" %} {% load bootstrap3 %} {% load el_pagination_tags %} {% block submit_action %} {% url 'file_info' %} {% endblock %} {% block filter_col_a %} {% bootstrap_field filter_form.file_type %} {% endblock %} {% block filter_col_b %} {% bootstrap_field filter_form.state %} {% endblock %} {% block filter_col_c %} {% bootstrap_field filter_form.created %} {% endblock %} {% block filter_col_d %} {% bootstrap_field filter_form.filename %} {% endblock %} {% block page_content %}
{% include 'cephia/upload_file.html' with upload_form=upload_form %}
{% if files_in_process %}

Files in process

{% for file in files_in_process %} {% endfor %}
ID Name Type Panel Assay Created State Download Message
{{ file.id }} Detail {{file.filename}} {{file.file_type}} {{file.panel.name}} {{file.assay.name}} {{file.created}} {{file.state}} Download
{{file.message}}
{% endif %} {% paginate files %}

Files

{% show_pages %}
{% for file in files %} {% endfor %}
ID Name Type Panel Assay Created State Download Message
{{ file.id }} Detail {{file.filename}} {{file.file_type}} {{file.panel.name}} {{file.assay.name}} {{file.created}} {{file.state}} Download
{{file.message}}
{% include 'cephia/upload_file.html' with upload_form=upload_form %}
{% endblock %}