{% extends "admin/base_site.html" %} {% load static %} {% block title%}Home{%endblock%} {% block breadcrumbs %} {% endblock %} {% block content %}

Select one or more targets and upload files!

Multi-Select with File Upload and Progress

{% for block in file_data %} {% endfor %}
FileName Uploaded Date Sources Processed Status Matched Actions
{{ block.file_name }}
Total: {{ block.total }}
{{ block.uploaded_date|date:"Y-m-d" }}
{% for target in block.targets %}
{{ target.name }}
{% endfor %}
{% for target in block.targets %}
{{ target.processed }}
{% endfor %}
{% if not block.loaded %} Parsing {% elif block.loaded == 1 and block.ready == 0 %} Processing {% elif block.ready == 1 %} Ready {% else %} Unknown {% endif %}
{% for target in block.targets %}
{{ target.matched_count }}
{% endfor %}
Download Matched Results
{% endblock %}