mirror of https://github.com/django/django.git
[3.2.x] Fixed #32950 -- Removed myproject from imports in admin docs where appropriate.
Backport of 019424e44e
from main
This commit is contained in:
parent
f4cf86f870
commit
de5a044cf4
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue