~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/bugtask.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-15 21:16:41 UTC
  • mfrom: (14487.4.4 bug-901016)
  • Revision ID: launchpad@pqm.canonical.com-20111215211641-vybbmw9yfaof2ck2
[r=jcsackett][bug=901016] reorder the buglisting sort buttons to
        match the order of the displayed data;
        always show the 'sort by title' button in bug listings

Show diffs side-by-side

added added

removed removed

Lines of Context:
2490
2490
# All sort orders supported by BugTaskSet.search() and a title for
2491
2491
# them.
2492
2492
SORT_KEYS = [
 
2493
    ('importance', 'Importance'),
 
2494
    ('status', 'Status'),
2493
2495
    ('id', 'Bug number'),
2494
2496
    ('title', 'Bug title'),
2495
 
    ('importance', 'Importance'),
2496
 
    ('status', 'Status'),
2497
 
    ('heat', 'Bug heat'),
2498
 
    ('reporter', 'Reporter'),
2499
 
    ('assignee', 'Assignee'),
2500
2497
    ('targetname', 'Package/Project/Series name'),
2501
2498
    ('milestone_name', 'Milestone'),
 
2499
    ('date_last_updated', 'Date bug last updated'),
 
2500
    ('assignee', 'Assignee'),
 
2501
    ('reporter', 'Reporter'),
2502
2502
    ('datecreated', 'Bug age'),
2503
 
    ('date_last_updated', 'Date bug last updated'),
2504
2503
    ('tag', 'Bug Tags'),
 
2504
    ('heat', 'Bug heat'),
2505
2505
    ('date_closed', 'Date bug closed'),
2506
2506
    ('dateassigned', 'Date when the bug task was assigned'),
2507
2507
    ('number_of_duplicates', 'Number of duplicates'),