diff --git a/docs/overview.txt b/docs/overview.txt
index dae0ffb..bb224d2 100644
a
|
b
|
A dynamic admin interface: it's not just scaffolding -- it's the whole house
|
129 | 129 | |
130 | 130 | Once your models are defined, Django can automatically create a professional, |
131 | 131 | production ready administrative interface -- a Web site that lets authenticated |
132 | | users add, change and delete objects. It's as easy as adding a line of code to |
133 | | your model classes:: |
| 132 | users add, change and delete objects. It's as easy as registering your model in |
| 133 | the admin interface:: |
| 134 | |
| 135 | from django.contrib import admin |
134 | 136 | |
135 | 137 | class Article(models.Model): |
136 | 138 | pub_date = models.DateTimeField() |
137 | 139 | headline = models.CharField(max_length=200) |
138 | 140 | content = models.TextField() |
139 | 141 | reporter = models.ForeignKey(Reporter) |
140 | | class Admin: pass |
| 142 | |
| 143 | admin.site.register(Article) |
141 | 144 | |
142 | 145 | The philosophy here is that your site is edited by a staff, or a client, or |
143 | 146 | maybe just you -- and you don't want to have to deal with creating backend |