{% extends "base.html" %}
{% block title %}
» Report Runs » {{run.id}}
{% endblock %}
{% block nav %}
Report Runs » {{run.id}}
{% endblock %}
{% block content %}
{% if request.method == "GET" and request.values.delete %}
{% else %}
Asset Database Comparison
Date Created |
Created By |
State |
Number Of Rows |
Delete |
Download Spreadsheet |
Active Statuses |
Inactive Statuses |
Ignored Statuses |
{{run.date_created|hh_format}} |
{{run.creator}} |
{{run.state}} |
{{rows|length}} |
|
Download
|
{{run.data['STATUSES_ACTIVE']}} |
{{run.data['STATUSES_INACTIVE']}} |
{{run.data['STATUSES_IGNORE']}} |
Sites inactive in the asset database, but with an electricity supply in
Chellow
Site Code |
Asset Status |
Chellow Supplies |
Asset Database |
Chellow |
{% for row in rows %}
{% for title in row.data.titles %}
{{row.data['values'][title]}} |
{% endfor %}
view
|
view
|
{% endfor %}
{% endif %}
{% endblock %}