~fginther/+junk/kanban-card-prefix-prototype

« back to all changes in this revision

Viewing changes to themes/canonical/templates/burndown.html

  • Committer: Francis Ginther
  • Date: 2012-08-10 20:20:17 UTC
  • Revision ID: francis.ginther@canonical.com-20120810202017-rg371ddmp0rdn971
Card prefix prototype

Show diffs side-by-side

added added

removed removed

Lines of Context:
149
149
                <th>Priority</th>
150
150
% endif
151
151
                <th>Size</th>
 
152
                <th>Type</th>
152
153
                <th>Card</th>
153
154
        </tr>
154
155
</thead>
162
163
    printed_status = False
163
164
%>
164
165
% for bp, item, priority, size, url in getattr(a, status+"_wis"):
 
166
<%
 
167
    card_hover, card_type, item = a.getCardType(item)
 
168
%>
165
169
        <tr>
166
170
% if not printed_assignee:
167
171
                <td rowspan="${a.todo+a.blocked+a.postponed+a.done+a.inprogress}"><a href="${a.url}" name="${a.name}">${util.real_name(a.name)}</a></td>
179
183
% if workitems_have_priority:
180
184
                <td class="priority_${priority}">${priority}</td>
181
185
% endif
182
 
        <td>${size}</td>
 
186
                <td>${size}</td>
 
187
                <td title="${card_hover}">${card_type}</td>
183
188
                <td>${item}</td>
184
189
        </tr>
185
190
% endfor