hackedteam/test-av2

View on GitHub
AVMaster/lib/web/templates/index.html

Summary

Maintainability
Test Coverage
{% extends "layout.html" %}

{% block body %}

<div class="tasks">
    <div class="page-header">
        <h1>{{ title }}</h1>
    </div>
    <table class="table table-striped table-bordered">
        <thead>
        <tr>
            <th>ID</th>
            <th>Report</th>
            <th>Results</th>
        </tr>
        </thead>
        <tbody>

        {% for report in reports %}

        <tr>
            <td>{{ report.time }}</td>
            <td>
                {% if report.status < 1 %}
                <b>In Progress..</b>
                {% else %}
                <a href="/report/{{ report.id }}">open</a>
                {% endif %}
            </td>
            <td><a href="/results/{{ report.id }}">open</a></td>
        </tr>

        {% endfor %}

        </tbody>
    </table>

    {% endblock %}