summaryrefslogtreecommitdiff
blob: ff5f35450ec4dfb8eecba6041adcb5e76074134c (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
{% extends "layout/base.html" %}
{% block content %}
<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class="panel-title">
      <span class="fa fa-fw fa-history"></span>
      <a href="/packages/added">New Build Logs On Packages</a>
    </h3>
  </div>
  <div class="table-responsive">
    <table class="table table-striped">
      {% include "includes/frontpage/new_logs" %}
    </table>
  </div>
</div>
<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class="panel-title">
      <span class="fa fa-fw fa-history"></span>
      <a href="/packages/added">New Repoman Logs On Packages</a>
    </h3>
  </div>
  <div class="table-responsive">
    <table class="table table-striped">
      {% include "includes/frontpage/new_repoman" %}
    </table>
  </div>
</div>
<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class="panel-title">
      <span class="fa fa-fw fa-history"></span>
      <a href="/packages/added">New Qa Logs On Packages</a>
    </h3>
  </div>
  <div class="table-responsive">
    <table class="table table-striped">
      {% include "includes/frontpage/new_qa" %}
    </table>
  </div>
</div>
{% endblock %}