aboutsummaryrefslogtreecommitdiff
path: root/app/dashboard/templates/boots-board-job.html
blob: dbb41cd11bacf524aa7d8e5b9f57aa99adbb1a75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{% extends "base.html" %}
{%- block meta -%}
    <meta name="csrf-token" content="{{ csrf_token_r() }}">
{%- endblock %}
{%- block title %}{{ page_title|safe }}{%- endblock %}
{%- block head %}
{{ super() }}
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/plug-ins/9dcbecd42ad/integration/bootstrap/3/dataTables.bootstrap.css">
{%- endblock %}
{%- block content %}
{%- include "date-range.html" %}
<div class="row details">
    <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 boot-details">
        <dl class="dl-horizontal">
            <dt>Tree</dt>
            <dd id="dd-tree">
                <i class="fa fa-cog fa-spin"></i>&nbsp;loading&hellip;
            </dd>
            <dt>Board</dt>
            <dd id="dd-board">
                <i class="fa fa-cog fa-spin"></i>&nbsp;loading&hellip;
            </dd>
        </dl>
    </div>
</div>
<div class="row">
    <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
        <div id="table-loading" class="pull-center">
            <i class="fa fa-cog fa-2x fa-spin"></i>&nbsp;loading&hellip;
        </div>
    {%- if is_mobile %}
        <div class="table-responsive" id="table-div">
    {%- else %}
        <div class="table" id="table-div">
    {%- endif %}
            <table class="table table-hover table-striped table-condensed clickable-table big-table" id="bootstable">
            </table>
        </div>
    </div>
</div>
<input type="hidden" id="board-name" value="{{ board }}">
<input type="hidden" id="job-name" value="{{ job }}">
<input type="hidden" id="page-len" value="{{ page_len }}">
<input type="hidden" id="search-filter" value="{{ search_filter }}">
{%- endblock %}
{%- block scripts %}
{{ super() }}
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/datatables/1.10.3/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="//cdn.datatables.net/plug-ins/9dcbecd42ad/integration/bootstrap/3/dataTables.bootstrap.js"></script>
<script type="text/javascript" src="/static/js/linaro-boots-board-job-0.0.2.js"></script>
{%- endblock %}