~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/answers/browser/questiontarget.py

  • Committer: Curtis Hovey
  • Date: 2011-05-27 21:03:22 UTC
  • mto: This revision was merged to the branch mainline in revision 13136.
  • Revision ID: curtis.hovey@canonical.com-20110527210322-yv1o7vkwr9u25t34
Moved templates to the packages that use them.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
    is_english_variant,
50
50
    preferred_or_request_languages,
51
51
    )
 
52
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
52
53
from canonical.launchpad.webapp import (
53
54
    canonical_url,
54
55
    Link,
61
62
from canonical.launchpad.webapp.breadcrumb import Breadcrumb
62
63
from canonical.launchpad.webapp.menu import structured
63
64
from lp.answers.browser.faqcollection import FAQCollectionMenu
64
 
from lp.answers.enums import QuestionStatus
65
65
from lp.answers.interfaces.faqcollection import IFAQCollection
66
66
from lp.answers.interfaces.questioncollection import (
67
67
    IQuestionCollection,
68
68
    IQuestionSet,
69
69
    ISearchableByQuestionOwner,
70
70
    )
 
71
from lp.answers.enums import QuestionStatus
71
72
from lp.answers.interfaces.questiontarget import (
72
73
    IQuestionTarget,
73
74
    ISearchQuestionsForm,
80
81
    )
81
82
from lp.app.enums import service_uses_launchpad
82
83
from lp.app.errors import NotFoundError
83
 
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
84
84
from lp.app.widgets.itemswidgets import LabeledMultiCheckBoxWidget
85
85
from lp.registry.interfaces.distribution import IDistribution
86
86
from lp.registry.interfaces.product import IProduct