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@14882 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			27 lines
		
	
	
		
			616 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			616 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # coding: utf-8
 | |
| from django.db import models
 | |
| from django.contrib import admin
 | |
| 
 | |
| class Band(models.Model):
 | |
|     name = models.CharField(max_length=100)
 | |
|     bio = models.TextField()
 | |
|     rank = models.IntegerField()
 | |
| 
 | |
|     class Meta:
 | |
|         ordering = ('name',)
 | |
| 
 | |
| class Song(models.Model):
 | |
|     band = models.ForeignKey(Band)
 | |
|     name = models.CharField(max_length=100)
 | |
|     duration = models.IntegerField()
 | |
| 
 | |
|     class Meta:
 | |
|         ordering = ('name',)
 | |
| 
 | |
| class SongInlineDefaultOrdering(admin.StackedInline):
 | |
|     model = Song
 | |
| 
 | |
| class SongInlineNewOrdering(admin.StackedInline):
 | |
|     model = Song
 | |
|     ordering = ('duration', )
 |