mirror of
https://github.com/django/django.git
synced 2025-09-26 20:19:16 +00:00
Used relative models imports in the GIS tutorial.
This commit is contained in:
parent
928c12eb1a
commit
bb7042cdab
1 changed files with 2 additions and 2 deletions
|
@ -435,7 +435,7 @@ with the following code::
|
||||||
|
|
||||||
import os
|
import os
|
||||||
from django.contrib.gis.utils import LayerMapping
|
from django.contrib.gis.utils import LayerMapping
|
||||||
from models import WorldBorder
|
from .models import WorldBorder
|
||||||
|
|
||||||
world_mapping = {
|
world_mapping = {
|
||||||
'fips' : 'FIPS',
|
'fips' : 'FIPS',
|
||||||
|
@ -704,7 +704,7 @@ Let's dive right in. Create a file called ``admin.py`` inside the
|
||||||
``world`` application with the following code::
|
``world`` application with the following code::
|
||||||
|
|
||||||
from django.contrib.gis import admin
|
from django.contrib.gis import admin
|
||||||
from models import WorldBorder
|
from .models import WorldBorder
|
||||||
|
|
||||||
admin.site.register(WorldBorder, admin.GeoModelAdmin)
|
admin.site.register(WorldBorder, admin.GeoModelAdmin)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue