~mabac/launchpad-work-items-tracker/visible-lane-selector

« back to all changes in this revision

Viewing changes to templates/roadmap_lane.html

  • Committer: Mattias Backman
  • Date: 2011-09-19 09:28:39 UTC
  • mfrom: (285.1.18 roadmap-tracker)
  • Revision ID: mattias.backman@linaro.org-20110919092839-owninb1wjj5wae70
Add the roadmap html templates.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<%inherit file="body.html"/>
 
2
<%namespace name="util" file="util.html"/>
 
3
<%namespace name="terminology" file="terminology.html"/>
 
4
 
 
5
<%!
 
6
import report_tools
 
7
%>
 
8
 
 
9
<%def name="title()">
 
10
Progress for ${lane}
 
11
</%def>
 
12
 
 
13
<h1>${title()}</h1>
 
14
<p>
 
15
% for status in statuses:
 
16
<p><b>${status['name']}</b>
 
17
% for card in status['cards']:
 
18
 
 
19
<table border=1><tr><td>
 
20
<a href="">${card.name}</a><br>
 
21
    <table border=0>
 
22
        <tr><td colspan=2>Description of what this requirement is all about.</td></tr>
 
23
        <tr><td>Done: n</td><td>&nbsp</td></tr>
 
24
        <tr><td><a href="">Team X</a></td><td align=right>Priority</td></tr>
 
25
    </table>
 
26
</td></tr></table>
 
27
<p><p>
 
28
% endfor
 
29
% endfor
 
30