mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	* Renamed the __unicode__ methods * Applied the python_2_unicode_compatible decorator * Removed the StrAndUnicode mix-in that is superseded by python_2_unicode_compatible * Kept the __unicode__ methods in classes that specifically test it under Python 2
		
			
				
	
	
		
			26 lines
		
	
	
		
			700 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			700 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # coding: utf-8
 | |
| """
 | |
| 32. Callable defaults
 | |
| 
 | |
| You can pass callable objects as the ``default`` parameter to a field. When
 | |
| the object is created without an explicit value passed in, Django will call
 | |
| the method to determine the default value.
 | |
| 
 | |
| This example uses ``datetime.datetime.now`` as the default for the ``pub_date``
 | |
| field.
 | |
| """
 | |
| 
 | |
| from datetime import datetime
 | |
| 
 | |
| from django.db import models
 | |
| from django.utils.encoding import python_2_unicode_compatible
 | |
| 
 | |
| 
 | |
| @python_2_unicode_compatible
 | |
| class Article(models.Model):
 | |
|     headline = models.CharField(max_length=100, default='Default headline')
 | |
|     pub_date = models.DateTimeField(default=datetime.now)
 | |
| 
 | |
|     def __str__(self):
 | |
|         return self.headline
 |