Package madrona :: Package manipulators :: Module models :: Class BaseManipulatorGeometry
[hide private]

Class BaseManipulatorGeometry

source code

django.contrib.gis.db.models.Model --+
                                     |
                                    BaseManipulatorGeometry

Abstract Model in which an inheriting subclass can be used for storing a data layer used by a Manipulator

======================  ==============================================
Attribute               Description
======================  ==============================================
``creation_date``       When the layer was created. Is not changed on
                        updates.

``active``              Whether this layer represents the current 
                        data layer. If set to true and and another
                        layer is active, that old layer will be 
                        deactivated.
======================  ==============================================

Nested Classes [hide private]
  Meta
Instance Methods [hide private]
 
save(self, *args, **kwargs) source code
Class Variables [hide private]
  creation_date = models.DateTimeField(auto_now= True)
  active = models.BooleanField(default= True, help_text= ...
  objects = BaseManipulatorGeometryManager()
Class Variable Details [hide private]

active

Value:
models.BooleanField(default= True, help_text= """
        Checking here indicates that this layer list should be the one\
 used in
        the application. Copies of other layer lists are retained in t\
he
        system so you can go back to an old version if necessary.
    """)