Changeset 1512
- Timestamp:
- 11/30/05 23:28:05 (3 years ago)
- Files:
-
- django/trunk/django/core/meta/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/meta/__init__.py
r1511 r1512 265 265 def get_method_name_part(self): 266 266 # This method encapsulates the logic that decides what name to give a 267 # method that retrieves related many-to-one o bjects. Usually it just268 # uses the lower-cased object_name, but if the related object is in269 # another app, its app_label is appended.267 # method that retrieves related many-to-one or many-to-many objects. 268 # Usually it just uses the lower-cased object_name, but if the related 269 # object is in another app, the related object's app_label is appended. 270 270 # 271 271 # Examples:
