Skip to content

Commit

Permalink
changed test_project to example
Browse files Browse the repository at this point in the history
  • Loading branch information
celiao committed Oct 15, 2014
1 parent 7300bab commit 73f757d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ admin.py

from django.contrib import admin
from nested_inline.admin import NestedStackedInline, NestedModelAdmin
from test_project.models import *
from example.models import *

class LevelThreeInline(NestedStackedInline):
model = LevelThree
Expand Down
2 changes: 1 addition & 1 deletion example/admin.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from django.contrib import admin
from nested_inline.admin import NestedStackedInline, NestedModelAdmin
from test_project.models import *
from example.models import *

class LevelThreeInline(NestedStackedInline):
model = LevelThree
Expand Down

0 comments on commit 73f757d

Please sign in to comment.