X-Git-Url: http://gitweb.fperrin.net/?p=djsite.git;a=blobdiff_plain;f=quotes%2Fmodels.py;h=53afcbe246a20f61e2c1c03767de029739540fca;hp=9791aa0b093b00eb924a76d8b0b52e1ac98574b2;hb=0b5eb1c3de4b96a048f784ab7c210462f26ac8da;hpb=80b8a3d5a952846e12ef15d441c8ae7c529666cc diff --git a/quotes/models.py b/quotes/models.py index 9791aa0..53afcbe 100644 --- a/quotes/models.py +++ b/quotes/models.py @@ -4,6 +4,9 @@ from django.db import models class Author(models.Model): name = models.CharField(max_length=100) + notes = models.TextField(blank=True, help_text= \ + "Notes for the author; may be left blank. Will \ + not be HTML-escaped.") def __unicode__(self): return self.name