Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialNicholas Anstis
2,095 PointsCreate a model named Article that has a headline attribute. Article.headline should be a CharField with a max_length of
This is what i've come up with but i'm stuck. If anybody could help me :D
from django.db import models
# Create your models here
class Article(models,Model):
Article.headline = models.CharField(max_length=255)
2 Answers
Florian Tönjes
Full Stack JavaScript Techdegree Graduate 50,856 PointsHey Nicholas,
you almost got it.
from django.db import models
# Create your models here
class Article(models.Model):
headline = models.CharField(max_length=255)
Regards, Florian
Patric Daniel Pförtner
1,542 PointsHi Nicholas Anstis,
You are very close to the answer, here is how I did it:
from django.db import models
# Create your models here
class Article(models.Model):
headline = models.CharField(max_length = 255)
Why are you learning Python? Maybe we have the same aims! I am learning it to bring my Start UP www.wolf-gate.com to the next level. Thank´s to Kenneth Love it´s easily possible :)
Nicholas Anstis
2,095 PointsNicholas Anstis
2,095 PointsThanks a lot :D