Refactoring Mapdata Models: MapItem and GeometryMapItem

This commit is contained in:
Laura Klünder 2016-11-14 21:15:20 +01:00
parent 91d898f240
commit bc0b5521ce
14 changed files with 186 additions and 192 deletions

View file

@ -1,10 +1,10 @@
from django.db import models
from django.utils.translation import ugettext_lazy as _
from c3nav.mapdata.models.base import MapdataModel
from c3nav.mapdata.models.base import MapItem
class Level(MapdataModel):
class Level(MapItem):
"""
A map level (-1, 0, 1, 2)
"""