Home | Trees | Indices | Help |
---|
|
django.db.models.Model --+ | PublicLayerList
Model used for storing uploaded kml files that list all public layers. ====================== ============================================== Attribute Description ====================== ============================================== ``active`` Whether this kml file represents the currently displayed data layers. If set to true and another ``PublicLayerList`` is active, that old list will be deactivated. ``kml_file`` Django `FileField <http://docs.djangoproject.com/en/dev/ref/models/fields/#filefield>`_ that references the actual kml ``creation_date`` When the layer was created. Is not changed on updates. ====================== ==============================================
|
|||
|
|||
|
|
|||
creation_date = models.DateTimeField(auto_now= True)
|
|||
active = models.BooleanField(default= True, help_text=
|
|||
kml_file = models.FileField(upload_to= 'layers/uploaded-kml/',
|
|
active
|
kml_file
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Tue Oct 30 11:31:02 2012 | http://epydoc.sourceforge.net |