web/lib/django/contrib/admindocs/tests/fields.py
author ymh <ymh.work@gmail.com>
Thu, 21 Oct 2010 17:55:22 +0200
changeset 54 53393dd1d878
parent 29 cc9b7e14412b
permissions -rw-r--r--
define version 00.014

from django.db import models

class CustomField(models.Field):
    description = "A custom field type"

class DescriptionLackingField(models.Field):
    pass