Hello everyone
I have the following Profile model
class Profile(models.Model):
user = models.OneToOneField(User, related_name='profile')
quadrant1 = models.IntegerField(default=1)
quadrant2 = models.IntegerField(default=1)
quadrant3 = models.IntegerField(default=1)
quadran
I managed to solve this problem :)
In the model class instead of description = models.TextField I must write
description = models.TextField(), I forgot the parentheses.
On Sunday, October 9, 2016 at 3:39:10 PM UTC+3, Bogdan P. wrote:
>
> Hello everyone.
> I started to learn python and d
Hello everyone.
I started to learn python and django and now I am building a small app so I
can get used to them.
my first problem is that I've created a new model class Task with this
structure:
name = models.CharField(max_length=100)
description = models.TextField
modified_at = models.DateTi
3 matches
Mail list logo