~jkakar/kanban/suppress-uncategorized-lane

« back to all changes in this revision

Viewing changes to kanban/templates/kanban.html

  • Committer: Jamu Kakar
  • Date: 2011-02-15 11:28:24 UTC
  • mfrom: (20.1.1 needs-release)
  • Revision ID: jkakar@kakar.ca-20110215112824-o31n4s60f4k6j7o1
Merged needs-release [f=719273]

The 'Verified' category has been renamed to 'Needs release'.  'Needs
release' does a better job of describing the action needs to move a
bug tile to the next stage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
        <div class="position-2 width-2 cell"><h2>In progress <span class="bug-count">{{ milestone.in_progress|length }} bugs</span></h2></div>
17
17
        <div class="position-4 width-2 cell"><h2>Needs review <span class="bug-count">{{ milestone.needs_review|length }} bugs</span></h2></div>
18
18
        <div class="position-6 width-2 cell"><h2>Needs testing <span class="bug-count">{{ milestone.needs_testing|length }} bugs</span></h2></div>
19
 
        <div class="position-8 width-2 cell"><h2>Verified <span class="bug-count">{{ milestone.verified|length }} bugs</span></h2></div>
 
19
        <div class="position-8 width-2 cell"><h2>Needs release <span class="bug-count">{{ milestone.needs_release|length }} bugs</span></h2></div>
20
20
        <div class="position-10 width-2 cell"><h2>Released <span class="bug-count">{{ milestone.released|length }} bugs</span></h2></div>
21
21
      </div>
22
22
 
130
130
 
131
131
        <div class="position-8 width-2 cell">
132
132
 
133
 
        {% for bug in story.verified %}
 
133
        {% for bug in story.needs_release %}
134
134
          <div class="tile">
135
135
          {% if bug.assignee %}
136
136
            <span class="assignee">{{ bug.assignee }}</span>
199
199
 
200
200
        <div class="position-8 width-2 cell">
201
201
          <div class="legend-description">
202
 
            <strong>Verified</strong> bugs are <em>Fix Committed</em>
203
 
            and have the <code>verified</code> tag.
 
202
            <strong>Needs release</strong> bugs are <em>Fix
 
203
            Committed</em> and have the <code>verified</code> tag.
204
204
          </div>
205
205
        </div>
206
206