Skip to content

Commit

Permalink
Merge pull request #852 from NarcisaAM/newsedit
Browse files Browse the repository at this point in the history
Fixed TextBox in News Item
  • Loading branch information
palcu committed Feb 27, 2016
2 parents c4581e1 + bcf2cc0 commit de32d90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wouso/interface/apps/pages/models.py
Expand Up @@ -30,7 +30,7 @@ def get_links(cls):

class NewsItem(models.Model):
title = models.CharField(max_length=100)
text = models.CharField(max_length=500)
text = models.TextField(max_length=500)
author = models.ForeignKey(Player)
date_pub = models.DateField(default=datetime.date.today)

Expand Down

0 comments on commit de32d90

Please sign in to comment.