mirror of
				https://github.com/django/django.git
				synced 2025-10-26 23:26:08 +00:00 
			
		
		
		
	git-svn-id: http://code.djangoproject.com/svn/django/trunk@11724 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			11 lines
		
	
	
		
			341 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			341 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.db import models
 | |
| from django.contrib.sites.models import Site
 | |
| 
 | |
| class Article(models.Model):
 | |
|     sites = models.ManyToManyField(Site)
 | |
|     headline = models.CharField(max_length=100)
 | |
|     publications = models.ManyToManyField("model_package.Publication", null=True, blank=True,)
 | |
| 
 | |
|     class Meta:
 | |
|         app_label = 'model_package'
 |