summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-10 21:46:40 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-10 21:46:40 +0000
commitbdcea2e6ca383fc6364be63bbf8359ddcd0145a3 (patch)
treec72ff231d228d5ddd9d27cd901fba606245f9b03 /django
parent77d20bedd408e95f1d96a166669f644e919a57cc (diff)
Fixed #118 -- Renamed 'flat files' to 'flat pages' in the admin. Didn't rename it in the Python code, because too many things would break.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
-rw-r--r--django/models/core.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/models/core.py b/django/models/core.py
index 82168c23a9..985dc38179 100644
--- a/django/models/core.py
+++ b/django/models/core.py
@@ -75,6 +75,7 @@ class Redirect(meta.Model):
class FlatFile(meta.Model):
db_table = 'flatfiles'
+ verbose_name = 'flat page'
fields = (
meta.CharField('url', 'URL', maxlength=100, validator_list=[validators.isAlphaNumericURL],
help_text="Example: '/about/contact/'. Make sure to have leading and trailing slashes."),