~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-09 09:23:38 UTC
  • mfrom: (14333.2.13 history-model)
  • Revision ID: launchpad@pqm.canonical.com-20111209092338-se7u5l0skqzaes1v
[r=jcsackett][bug=295214, 894836,
 898200] Keep sort button ob bug listing pages in sync with the
 displayed data

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
    'FAQView',
13
13
    ]
14
14
 
15
 
from lp import _
16
 
from lp.answers.browser.faqcollection import FAQCollectionMenu
17
 
from lp.answers.interfaces.faq import IFAQ
18
 
from lp.answers.interfaces.faqcollection import IFAQCollection
19
 
from lp.services.webapp import (
 
15
from canonical.launchpad import _
 
16
from canonical.launchpad.webapp import (
20
17
    action,
21
18
    canonical_url,
22
19
    enabled_with_permission,
25
22
    Link,
26
23
    NavigationMenu,
27
24
    )
28
 
from lp.services.webapp.breadcrumb import Breadcrumb
 
25
from canonical.launchpad.webapp.breadcrumb import Breadcrumb
 
26
from lp.answers.browser.faqcollection import FAQCollectionMenu
 
27
from lp.answers.interfaces.faq import IFAQ
 
28
from lp.answers.interfaces.faqcollection import IFAQCollection
29
29
 
30
30
 
31
31
class FAQNavigationMenu(NavigationMenu):