summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/models.txt4
-rw-r--r--docs/topics/forms/media.txt4
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt
index d08d044979..e8468cd26c 100644
--- a/docs/topics/db/models.txt
+++ b/docs/topics/db/models.txt
@@ -751,10 +751,10 @@ For example, this model has a few custom methods::
else:
return "Post-boomer"
- def _get_full_name(self):
+ @property
+ def full_name(self):
"Returns the person's full name."
return '%s %s' % (self.first_name, self.last_name)
- full_name = property(_get_full_name)
The last method in this example is a :term:`property`.
diff --git a/docs/topics/forms/media.txt b/docs/topics/forms/media.txt
index 1e2345ba20..adbd2c377e 100644
--- a/docs/topics/forms/media.txt
+++ b/docs/topics/forms/media.txt
@@ -188,10 +188,10 @@ For example, the static definition for our Calendar Widget could also
be defined in a dynamic fashion::
class CalendarWidget(forms.TextInput):
- def _media(self):
+ @property
+ def media(self):
return forms.Media(css={'all': ('pretty.css',)},
js=('animations.js', 'actions.js'))
- media = property(_media)
See the section on `Media objects`_ for more details on how to construct
return values for dynamic ``media`` properties.