Fixed the import errors hacking warning
This commit is contained in:
parent
a49f74bc11
commit
8f50ee9469
@ -13,9 +13,12 @@
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
from storyboard.projects.models import Project, Series, Milestone
|
||||
from django.contrib import admin
|
||||
|
||||
from storyboard.projects.models import Milestone
|
||||
from storyboard.projects.models import Project
|
||||
from storyboard.projects.models import Series
|
||||
|
||||
|
||||
admin.site.register(Project)
|
||||
admin.site.register(Series)
|
||||
|
@ -13,9 +13,12 @@
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
from storyboard.stories.models import Story, Task, Comment, StoryTag
|
||||
from django.contrib import admin
|
||||
|
||||
from storyboard.stories.models import Comment
|
||||
from storyboard.stories.models import Story
|
||||
from storyboard.stories.models import StoryTag
|
||||
from storyboard.stories.models import Task
|
||||
|
||||
admin.site.register(Story)
|
||||
admin.site.register(Task)
|
||||
|
@ -13,9 +13,12 @@
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
from django.db import models
|
||||
from django.contrib.auth.models import User
|
||||
from storyboard.projects.models import Project, Series, Milestone
|
||||
from django.db import models
|
||||
|
||||
from storyboard.projects.models import Milestone
|
||||
from storyboard.projects.models import Project
|
||||
from storyboard.projects.models import Series
|
||||
|
||||
|
||||
class Story(models.Model):
|
||||
|
Loading…
Reference in New Issue
Block a user