stackalytics/dashboard/templates/commits_overview.html
Ilya Shakhat 2aaf873b38 Commit overview section data is fixed
* Fixed commit counter shown in overview section
* Added company break-down in engineer details
* Garbage collector for old updates is fixed

Fixes bug 1202184

Change-Id: I91752671460a2b18f8c0cab3b1aed65d0c62641d
2013-07-17 18:51:09 +04:00

29 lines
776 B
HTML

<h3>Commit overview</h3>
{% if blueprints %}
<div>Blueprints:
<ol>
{% for rec in blueprints %}
<li>
<a href="https://blueprints.launchpad.net/{{ rec['module'] }}/+spec/{{ rec['id'] }}">{{ rec['id'] }}</a>
<small>{{ rec['module'] }}</small>
</li>
{% endfor %}
</ol>
</div>
{% endif %}
{% if bugs %}
<div>Bugs:
<ol>
{% for rec in bugs %}
<li>
<a href="https://bugs.launchpad.net/bugs/{{ rec['id'] }}">{{ rec['id'] }}</a>
</li>
{% endfor %}
</ol>
</div>
{% endif %}
<div>Total commits: <b>{{ commit_count }}</b></div>
<div>Total LOC: <b>{{ loc }}</b></div>