Prefix cross-application imports with pgweb

As required by the new project layout.
This commit is contained in:
Magnus Hagander
2016-04-28 11:32:13 +02:00
parent 856dbd31a2
commit 350b936e58
15 changed files with 27 additions and 27 deletions

View File

@ -23,13 +23,13 @@ from pgweb.util.misc import get_client_ip, is_behind_cache, varnish_purge
from pgweb.util.sitestruct import get_all_pages_struct
# models needed for the pieces on the frontpage
from news.models import NewsArticle
from events.models import Event
from quotes.models import Quote
from pgweb.news.models import NewsArticle
from pgweb.events.models import Event
from pgweb.quotes.models import Quote
from models import Version, ImportedRSSItem
# models needed for the pieces on the community page
from survey.models import Survey
from pgweb.survey.models import Survey
# models and forms needed for core objects
from models import Organisation