Fix import paths to include ietf.
- Legacy-Id: 3874
This commit is contained in:
parent
1fc978e9fe
commit
f999045c49
|
@ -725,7 +725,7 @@ class InternetDraft(Document):
|
|||
|
||||
@property
|
||||
def ipr(self):
|
||||
from ipr.models import IprDraftProxy
|
||||
from ietf.ipr.models import IprDraftProxy
|
||||
return IprDraftProxy.objects.filter(doc_alias__document=self.pk)
|
||||
|
||||
class Meta:
|
||||
|
|
|
@ -9,7 +9,7 @@ from ietf.utils.history import find_history_active_at
|
|||
|
||||
from ietf.group.models import Group
|
||||
from ietf.wgcharter.views import _get_history, _get_html
|
||||
from wgcharter import markup_txt
|
||||
from ietf.wgcharter import markup_txt
|
||||
import datetime
|
||||
import re, os
|
||||
|
||||
|
|
|
@ -11,13 +11,13 @@ from django.utils import simplejson as json
|
|||
from django.utils.decorators import decorator_from_middleware
|
||||
from django.middleware.gzip import GZipMiddleware
|
||||
from django.core.exceptions import ObjectDoesNotExist
|
||||
from django.conf import settings
|
||||
from ietf.doc.models import GroupBallotPositionDocEvent, WriteupDocEvent
|
||||
from ietf.group.models import Group, GroupHistory
|
||||
from ietf.person.models import Person
|
||||
from wgcharter import markup_txt
|
||||
from django.conf import settings
|
||||
from ietf.wgcharter import markup_txt
|
||||
|
||||
from wgcharter.utils import *
|
||||
from ietf.wgcharter.utils import *
|
||||
from ietf.utils.history import find_history_active_at
|
||||
from ietf.idtracker.templatetags.ietf_filters import format_textarea, fill
|
||||
|
||||
|
|
Loading…
Reference in a new issue