pytask/profile/models.py
changeset 469 87f03c28f5de
parent 463 c7c595c0bed3
child 472 f9011a1dfe1c
equal deleted inserted replaced
468:e5f8ea40369c 469:87f03c28f5de
   101     sent_date = models.DateTimeField()
   101     sent_date = models.DateTimeField()
   102 
   102 
   103     is_read = models.BooleanField(default = False)
   103     is_read = models.BooleanField(default = False)
   104 
   104 
   105     is_deleted = models.BooleanField(default = False)
   105     is_deleted = models.BooleanField(default = False)
       
   106 
       
   107 
       
   108 # This import is not used anywhere else, but is very important to register
       
   109 # the user registered signal receiver. So please don't remove it. Although
       
   110 # it against style to put any imports in the end of the file, this is
       
   111 # intentional so that this import may not be removed accidentally when
       
   112 # cleaning up other unused imports.
       
   113 # Although this import is not directly used in this f
       
   114 import pytask.profile.regbackend