~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/blueprints/browser/specification.py

  • Committer: Colin Watson
  • Date: 2011-08-19 00:25:11 UTC
  • mfrom: (7675.1045.728 db-devel)
  • mto: This revision was merged to the branch mainline in revision 13909.
  • Revision ID: cjwatson@canonical.com-20110819002511-0x8hrqs1ckiqk53g
merge db-devel

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
from lp.app.browser.lazrjs import (
100
100
    BooleanChoiceWidget,
101
101
    EnumChoiceWidget,
102
 
    InlineEditPickerWidget,
 
102
    InlinePersonEditPickerWidget,
103
103
    TextAreaEditorWidget,
104
104
    TextLineEditorWidget,
105
105
    )
576
576
 
577
577
    @property
578
578
    def approver_widget(self):
579
 
        return InlineEditPickerWidget(
 
579
        return InlinePersonEditPickerWidget(
580
580
            self.context, ISpecification['approver'],
581
581
            format_link(self.context.approver),
582
582
            header='Change approver', edit_view='+people',
584
584
 
585
585
    @property
586
586
    def drafter_widget(self):
587
 
        return InlineEditPickerWidget(
 
587
        return InlinePersonEditPickerWidget(
588
588
            self.context, ISpecification['drafter'],
589
589
            format_link(self.context.drafter),
590
590
            header='Change drafter', edit_view='+people',
592
592
 
593
593
    @property
594
594
    def assignee_widget(self):
595
 
        return InlineEditPickerWidget(
 
595
        return InlinePersonEditPickerWidget(
596
596
            self.context, ISpecification['assignee'],
597
597
            format_link(self.context.assignee),
598
598
            header='Change assignee', edit_view='+people',