move more constants

pull/1/head
eric 2013-08-25 23:52:09 -04:00
parent e2bd56ce9d
commit 567f20d5a2
2 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,6 @@ class CCLicense():
return ''
(INDIVIDUAL, LIBRARY, BORROWED) = (1, 2, 3)
class Offer(models.Model):
CHOICES = ((INDIVIDUAL,'Individual license'),(LIBRARY,'Library License'))
work = models.ForeignKey("Work", related_name="offers", null=False)

View File

@ -1 +1,2 @@
(REWARDS, BUY2UNGLUE) = (1, 2)
(INDIVIDUAL, LIBRARY, BORROWED) = (1, 2, 3)