Changeset - b694901831b2
symposion/boxes/migrations/0001_initial.py
Show inline comments
 
deleted file
symposion/boxes/migrations/__init__.py
Show inline comments
 
deleted file
symposion/cms/migrations/0001_initial.py
Show inline comments
 
deleted file
symposion/cms/migrations/__init__.py
Show inline comments
 
deleted file
symposion/conference/migrations/0001_initial.py
Show inline comments
 
deleted file
symposion/conference/migrations/__init__.py
Show inline comments
 
deleted file
symposion/conference/models.py
Show inline comments
 
from django.db import models
 
from django.utils.translation import ugettext_lazy as _
 

	
 
from timezones.fields import TimeZoneField
 

	
 
from south.modelsinspector import add_introspection_rules
 
add_introspection_rules([], [r"^timezones\.fields\.TimeZoneField"])
 

	
 

	
 
CONFERENCE_CACHE = {}
 

	
 

	
 
class Conference(models.Model):
 
    """
 
    the full conference for a specific year, e.g. US PyCon 2012.
 
    """
 

	
 
    title = models.CharField(_("title"), max_length=100)
 

	
 
    # when the conference runs
symposion/proposals/migrations/0001_initial.py
Show inline comments
 
deleted file
symposion/proposals/migrations/__init__.py
Show inline comments
 
deleted file
symposion/reviews/migrations/0001_initial.py
Show inline comments
 
deleted file
symposion/reviews/migrations/__init__.py
Show inline comments
 
deleted file
symposion/schedule/migrations/0001_initial.py
Show inline comments
 
deleted file
symposion/schedule/migrations/__init__.py
Show inline comments
 
deleted file
symposion/speakers/migrations/0001_initial.py
Show inline comments
 
deleted file
symposion/speakers/migrations/__init__.py
Show inline comments
 
deleted file
symposion/sponsorship/migrations/0001_initial.py
Show inline comments
 
deleted file
symposion/sponsorship/migrations/__init__.py
Show inline comments
 
deleted file
symposion/teams/migrations/0001_initial.py
Show inline comments
 
deleted file
symposion/teams/migrations/__init__.py
Show inline comments
 
deleted file
0 comments (0 inline, 0 general)