mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-22 09:38:18 +00:00
9 lines
268 B
Python
Executable File
9 lines
268 B
Python
Executable File
from django.db import models
|
|
from spa.models._Activity import _Activity
|
|
|
|
class MixLike(_Activity):
|
|
mix = models.ForeignKey('spa.Mix', related_name='likes')
|
|
|
|
def __unicode__(self):
|
|
return "%s on %s" % (self.user.get_full_name(), self.mix.title)
|