fnp
/
edumed.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Handle textarea max_length better in older browsers
[edumed.git]
/
comment
/
models.py
diff --git
a/comment/models.py
b/comment/models.py
index
a5c3000
..
4cbabfa
100644
(file)
--- a/
comment/models.py
+++ b/
comment/models.py
@@
-7,6
+7,7
@@
class CommentDocument(models.Model):
slug = models.SlugField(max_length = 255, unique = True)
comment_id = models.CharField(max_length = 255, unique = True)
order = models.IntegerField()
+ language_code = models.CharField(max_length = 2, default = 'pl')
class Meta:
ordering = ['order']