forked from rc/aircox
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			570 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			570 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.db import models
 | 
						|
 | 
						|
from aircox_cms.models import RelatedPost
 | 
						|
import aircox_programs.models as programs
 | 
						|
 | 
						|
class Program (RelatedPost):
 | 
						|
    class Relation:
 | 
						|
        model = programs.Program
 | 
						|
        bind_mapping = True
 | 
						|
        mapping = {
 | 
						|
            'title': 'name',
 | 
						|
            'content': 'description',
 | 
						|
        }
 | 
						|
 | 
						|
class Episode (RelatedPost):
 | 
						|
    class Relation:
 | 
						|
        model = programs.Diffusion
 | 
						|
        bind_mapping = True
 | 
						|
        mapping = {
 | 
						|
            'thread': 'program',
 | 
						|
            # 'title': 'name',
 | 
						|
            # 'content': 'description',
 | 
						|
        }
 | 
						|
 |