All pastes #2075427 Raw Edit

Untitled

public text v1 · immutable
#2075427 ·published 2011-06-06 07:26 UTC
rendered paste body
from django.db import models
from photologue.models import ImageModel

class AlbumCover(ImageModel):
    pass

class Album(models.Model):
    name = models.CharField(max_length=50)
    slug = models.SlugField()
    cover = models.ForeignKey(AlbumCover)