('name',models.CharField(help_text=b'The name for this object (space-like characters will be automatically replaced by dashes)',max_length=200)),
('version',models.PositiveIntegerField(default=1,help_text=b'The version of this object (an integer starting from 1)')),
('short_description',models.CharField(default=b'',help_text=b'Describe the object succinctly (try to keep it under 80 characters)',max_length=100,blank=True)),
('hash',models.CharField(help_text=b'Hashed value of the object contents (<a href="https://docs.python.org/2/library/hashlib.html">SHA256, hexadecimal digest</a>). This field is auto-generated and managed by the platform.',max_length=64,editable=False)),
('name',models.CharField(help_text='The name for this object (space-like characters will be automatically replaced by dashes)',max_length=200)),
('version',models.PositiveIntegerField(default=1,help_text='The version of this object (an integer starting from 1)')),
('short_description',models.CharField(default='',help_text='Describe the object succinctly (try to keep it under 80 characters)',max_length=100,blank=True)),
('hash',models.CharField(help_text='Hashed value of the object contents (<a href="https://docs.python.org/2/library/hashlib.html">SHA256, hexadecimal digest</a>). This field is auto-generated and managed by the platform.',max_length=64,editable=False)),