mirror of
https://github.com/django/django.git
synced 2025-10-19 03:39:10 +00:00
verbose_name. git-svn-id: http://code.djangoproject.com/svn/django/branches/unicode@5372 bcc190cf-cafb-0310-a4f2-bffc1f526a37
17 lines
474 B
Python
17 lines
474 B
Python
# coding: utf-8
|
|
from django.db import models
|
|
|
|
class Article(models.Model):
|
|
headline = models.CharField(maxlength=100, default='Default headline')
|
|
pub_date = models.DateTimeField()
|
|
|
|
class Meta:
|
|
ordering = ('pub_date','headline')
|
|
# A utf-8 verbose name (Ångström's Articles) to test they are valid.
|
|
verbose_name = "\xc3\x85ngstr\xc3\xb6m's Articles"
|
|
|
|
def __unicode__(self):
|
|
return self.headline
|
|
|
|
__test__ = {'API_TESTS': "" }
|