summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorGuilherme Salgado <guilherme.salgado@linaro.org>2011-06-08 18:07:29 -0300
committerGuilherme Salgado <guilherme.salgado@linaro.org>2011-06-08 18:07:29 -0300
commit5201b7815fc22e9a962c9c68efacf22d3e13daf4 (patch)
tree21dd635f7d8a9e25c11c6ae4894ed350f537f69f /templates
parentbe4a853d55293f808b5c059b286e0c097686dacd (diff)
Change reassign-patches-from-unknown-project.py to set a submitter for patches
extracted from branch revision notification coming from Launchpad Change the team/project charts to include the current month.
Diffstat (limited to 'templates')
-rw-r--r--templates/patchmetrics/team.html26
1 files changed, 19 insertions, 7 deletions
diff --git a/templates/patchmetrics/team.html b/templates/patchmetrics/team.html
index 83926bb..db64059 100644
--- a/templates/patchmetrics/team.html
+++ b/templates/patchmetrics/team.html
@@ -14,15 +14,27 @@
{% block body %}
+<table class="horizontal">
+ <tr>
+ <th>Team members:</th>
+ <td>
+ {% for member in team.members %}
+ {{member.get_profile.name}}{% if not forloop.last %},{% endif %}
+ {% endfor %}
+ </td>
+ </tr>
+ <tr>
+ <th>Submitted patches:</th>
+ <td>TODO</td>
+ </tr>
+ <tr>
+ <th>Accepted patches:</th>
+ <td>TODO</td>
+ </tr>
+</table>
+
<p>&nbsp;</p>
{{patches_per_month_chart|safe}}
<p>&nbsp;</p>
-<p>Team members:
- {% for member in team.members %}
- <strong>{{member.get_profile.name}}
- </strong>{% if not forloop.last %},{% endif %}
- {% endfor %}
-</p>
-
{% endblock %}