This commit is contained in:
Jeff Balogh 2009-10-22 15:36:39 -07:00
Родитель 99a76d399a
Коммит dfb4df89e3
2 изменённых файлов: 16 добавлений и 0 удалений

0
apps/addons/__init__.py Normal file
Просмотреть файл

16
apps/addons/models.py Normal file
Просмотреть файл

@ -0,0 +1,16 @@
from django.db import models
import amo
from users.models import User
class Addon(amo.LegacyModel):
name = amo.TranslatedField()
users = models.ManyToManyField(User)
class Meta:
db_table = 'addons'
def get_absolute_url(self):
# XXX: use reverse
return '/addon/%s' % self.id