project/scipycon/sponsor/models.py
changeset 96 178b89a3ca4f
parent 95 f94e0cd9a862
child 97 16070c71aabe
--- a/project/scipycon/sponsor/models.py	Tue Jul 13 19:57:37 2010 +0530
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-# -*- coding: utf-8 -*-
-from __future__ import absolute_import
-
-#django
-from django.db import models
-from django.conf import settings
-
-TYPE_CHOICES = (
-    ('gold', 'Gold'),
-    ('silver', 'Silver'),
-    ('schwag', 'Schwag'),
-    )
-
-class Sponsor(models.Model):
-    """Defines sponsors for *PyCon"""
-    slug = models.SlugField()
-    title = models.CharField(max_length=255)
-    type = models.CharField(max_length=10, choices=TYPE_CHOICES)
-    contact_name = models.CharField(max_length=255)
-    contact_email = models.CharField(max_length=255)
-    contact_phone = models.CharField(max_length=255)
-    url = models.URLField(blank=True, verify_exists=False)
-    logo = models.CharField(max_length=64, blank=True)
-    guests = models.IntegerField()
-
-    def __unicode__(self):
-        return self.title
-