mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	git-svn-id: http://code.djangoproject.com/svn/django/trunk@5803 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			16 lines
		
	
	
		
			502 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			502 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import tempfile
 | |
| from django.db import models
 | |
| 
 | |
| class Photo(models.Model):
 | |
|     title = models.CharField(max_length=30)
 | |
|     image = models.FileField(upload_to=tempfile.gettempdir())
 | |
|     
 | |
|     # Support code for the tests; this keeps track of how many times save() gets
 | |
|     # called on each instance.
 | |
|     def __init__(self, *args, **kwargs):
 | |
|        super(Photo, self).__init__(*args, **kwargs)
 | |
|        self._savecount = 0
 | |
|     
 | |
|     def save(self):
 | |
|         super(Photo, self).save()
 | |
|         self._savecount +=1 |