I am an experimental OpenAddresses test service, currently under development (July 2015). Find me on Github or read this blog post to learn more.

{% if job.status is sameas True %} {% set status_phrase = 'has succeeded' %} {% elif job.status is sameas False %} {% set status_phrase = 'has failed' %} {% else %} {% set status_phrase = 'is in progress' %} {% endif %} This job {{ status_phrase }}:

{% for (sha, path) in job.task_files.items() %} {% set file_result = job.file_results[path] %} {% set file_state = job.file_states[path] %} {% endfor %}
{% if file_state is sameas True %} {% elif file_state is sameas False %} {% endif %} {{ path }} {% if file_result.output and file_result.output['output'] %} log {% endif %} {% if file_result.output and file_result.output['sample'] %} sample {% endif %} {% if file_result.output and file_result.output['processed'] %} data {% endif %}