summaryrefslogtreecommitdiff
path: root/linaro_metrics/templates/linaro_metrics/report_project_activity.html
blob: 22324938ef54c11a209e790c94797f18699e6e3e (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
{% extends "base.html" %}

{% block title %}Linaro Reports: Project Activity{% endblock %}
{% block heading %}Project Activity{% endblock %}

{% block body %}

<h2>Top {{ summary|length}} Linaro Project Contributions</h2>
<table class="table">
  <tr><th>Project</th><th>12 months</th><th>6 months</th><th>3 months</th><th>1 month</th></tr>
{% for s in summary %}
  <tr class="{% cycle 'odd' 'even' %}">{% for td in s %}<td>{{td}}</td>{% endfor %}</tr>
{% endfor %}
<table>

<h2>Top Accepted {{ summary|length}} Linaro Project Contributions</h2>
<table class="table">
  <tr><th>Project</th><th>12 months</th><th>6 months</th><th>3 months</th><th>1 month</th></tr>
{% for s in accepted %}
  <tr class="{% cycle 'odd' 'even' %}">{% for td in s %}<td>{{td}}</td>{% endfor %}</tr>
{% endfor %}
<table>

{% endblock %}