django/tests/regressiontests/admin_util/models.py

19 lines
477 B
Python

from django.db import models
class Article(models.Model):
"""
A simple Article model for testing
"""
title = models.CharField(max_length=100)
title2 = models.CharField(max_length=100, verbose_name="another name")
created = models.DateTimeField()
def test_from_model(self):
return "nothing"
def test_from_model_with_override(self):
return "nothing"
test_from_model_with_override.short_description = "not what you expect"