{% extends "base.html" %} {% load projecttags %} {% load humanize %} {% load static %} {% block title %} Import Builds from eventlogs - Toaster {% endblock %} {% block pagecontent %}
{% if messages %}
{% for message in messages %}
{{message}}
{%endfor%}
{% endif %}

Import eventlog file

{% csrf_token %}
{{ form.eventlog_file}}

Eventlogs from existing build directory:

{% if files %}
{% for file in files %} {% endfor%}
Name Size Action
{{file.name}} {{file.size|filesizeformat}} {% if file.imported == True and file.build_id is not None %} Build Details {% elif request.session.file == file.name or request.session.all_builds %} {%else%} {%endif%}
{% else %}
Sorry - no files found
{%endif%}
{% endblock %}