Changes between Initial Version and Version 1 of Ticket #26110, comment 2


Ignore:
Timestamp:
Jun 4, 2018, 8:41:11 PM (6 years ago)
Author:
Laurynas Riliskis

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #26110, comment 2

    initial v1  
    11I am running Django 2 and encounter the same problem.  The same results are obtained is called though the admin interface.
     2
     3
     4{{{
     5class PublishedConsent(models.Model):
     6    uuid = models.UUIDField(
     7            default=uuid.uuid4,
     8            editable=False)
     9    json = JSONField()
     10}}}
     11
     12and then running ./manage shell or through the admin interface, results are the same.
    213
    314{{{
Back to Top