summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/ref/contrib/admin/index.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index 074529a64a..23b0456ef9 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -92,7 +92,7 @@ Other topics
application. Let's take a look at an example of the ``ModelAdmin``::
from django.contrib import admin
- from myproject.myapp.models import Author
+ from myapp.models import Author
class AuthorAdmin(admin.ModelAdmin):
pass
@@ -108,7 +108,7 @@ Other topics
preceding example could be simplified to::
from django.contrib import admin
- from myproject.myapp.models import Author
+ from myapp.models import Author
admin.site.register(Author)
@@ -2714,7 +2714,7 @@ any other inline. In your ``admin.py`` for this example app::
from django.contrib import admin
from django.contrib.contenttypes.admin import GenericTabularInline
- from myproject.myapp.models import Image, Product
+ from myapp.models import Image, Product
class ImageInline(GenericTabularInline):
model = Image