~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

[r=sinzui][bug=260674] Fixes fields on advanced bug search to use the
        personpicker.

Show diffs side-by-side

added added

removed removed

Lines of Context:
183
183
    )
184
184
from lp.app.widgets.itemswidgets import LabeledMultiCheckBoxWidget
185
185
from lp.app.widgets.launchpadtarget import LaunchpadTargetWidget
 
186
from lp.app.widgets.popup import PersonPickerWidget
186
187
from lp.app.widgets.project import ProjectScopeWidget
187
188
from lp.bugs.browser.bug import (
188
189
    BugContextMenu,
2219
2220
    custom_widget('tag', BugTagsWidget)
2220
2221
    custom_widget('tags_combinator', RadioWidget)
2221
2222
    custom_widget('component', LabeledMultiCheckBoxWidget)
 
2223
    custom_widget('assignee', PersonPickerWidget)
 
2224
    custom_widget('bug_reporter', PersonPickerWidget)
 
2225
    custom_widget('bug_commenter', PersonPickerWidget)
 
2226
    custom_widget('bug_supervisor', PersonPickerWidget)
 
2227
    custom_widget('subscriber', PersonPickerWidget)
2222
2228
 
2223
2229
    @cachedproperty
2224
2230
    def bug_tracking_usage(self):