Change BasicModel.verbose_name

Isn't it nicer to test for a text which is different from
what the previous broken behavior was? Now we can really
tell it works!
This commit is contained in:
Markus Törnqvist 2013-05-18 17:42:54 +03:00
parent e2d3aa65d7
commit e2a5ec0350

View File

@ -34,7 +34,7 @@ class Anchor(RESTFrameworkModel):
class BasicModel(RESTFrameworkModel):
text = models.CharField(max_length=100, verbose_name=_("Text"), help_text=_("Text description."))
text = models.CharField(max_length=100, verbose_name=_("Text comes here"), help_text=_("Text description."))
class SlugBasedModel(RESTFrameworkModel):