~mabac/launchpad-work-items-tracker/add-progress-bars-to-lane

« back to all changes in this revision

Viewing changes to templates/roadmap_lane.html

  • Committer: Mattias Backman
  • Date: 2011-10-31 16:09:56 UTC
  • mfrom: (303.2.2 count-blueprints)
  • Revision ID: mattias.backman@linaro.org-20111031160956-4p5mzb6rz1l792ps
List and count linked blueprints per high level status.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
<p>
22
22
% for status in statuses:
23
23
<p><b>${status['name']}</b>
24
 
% for card in status['cards']:
25
 
 
 
24
% for card_dict in status['cards']:
26
25
<table width="45%">
27
26
<thead>
28
27
    <tr><th>
29
 
        <a href="roadmap-card-${card.roadmap_id}.html">${card.name}</a>
 
28
        <a href="roadmap-card-${card_dict['card'].roadmap_id}.html">${card_dict['card'].name}</a>
30
29
    </th></tr>
31
30
</thead>
32
 
    <tr><td colspan=2>${card.description}</td></tr>
33
 
    <tr><td>Done: n</td><td>&nbsp</td></tr>
34
 
    <tr><td><a href="">${card.team}</a></td><td align=right>Priority ${card.priority}</td></tr>
 
31
    <tr><td colspan=2>${card_dict['card'].description}</td></tr>
 
32
    <tr><td>
 
33
        ${card_dict['count']}
 
34
    </td><td>&nbsp</td></tr>
 
35
    <tr><td><a href="">${card_dict['card'].team}</a></td><td align=right>Priority ${card_dict['card'].priority}</td></tr>
35
36
</table>
36
37
<p><p>
37
38
% endfor