mirror of
				https://github.com/django/django.git
				synced 2025-10-30 17:16:10 +00:00 
			
		
		
		
	Merge pull request #549 from WoLpH/master
Changed an if statement in the docs to a slightly cleaner variant.
This commit is contained in:
		| @@ -673,11 +673,12 @@ For example, this model has a few custom methods:: | ||||
|         def baby_boomer_status(self): | ||||
|             "Returns the person's baby-boomer status." | ||||
|             import datetime | ||||
|             if datetime.date(1945, 8, 1) <= self.birth_date <= datetime.date(1964, 12, 31): | ||||
|                 return "Baby boomer" | ||||
|             if self.birth_date < datetime.date(1945, 8, 1): | ||||
|                 return "Pre-boomer" | ||||
|             return "Post-boomer" | ||||
|             elif self.birth_date < datetime.date(1965, 1, 1): | ||||
|                 return "Baby boomer" | ||||
|             else: | ||||
|                 return "Post-boomer" | ||||
|  | ||||
|         def is_midwestern(self): | ||||
|             "Returns True if this person is from the Midwest." | ||||
|   | ||||
		Reference in New Issue
	
	Block a user