diff videos/models.py @ 71:e2868ad47a1e

For Django 1.4, using the new manage.py.
author Brian Neal <bgneal@gmail.com>
date Sat, 14 Apr 2012 16:40:29 -0500
parents madeira/videos/models.py@5913ddcebea4
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/videos/models.py	Sat Apr 14 16:40:29 2012 -0500
@@ -0,0 +1,42 @@
+"""
+Models for the videos application.
+
+"""
+from django.db import models
+
+
+class Collection(models.Model):
+    """
+    This model represents a collection of videos.
+
+    """
+    title = models.CharField(max_length=64)
+    description = models.TextField()
+    date_added = models.DateTimeField()
+
+    class Meta:
+        ordering = ['-date_added']
+
+    def __unicode__(self):
+        return self.title
+
+    @models.permalink
+    def get_absolute_url(self):
+        return ('videos-item', [], {'pk': str(self.id)})
+
+
+class Video(models.Model):
+    """
+    This model represents a video clip hosted on a remote video sharing site
+    (e.g. YouTube).
+
+    """
+    title = models.CharField(max_length=64)
+    embed_code = models.TextField()
+    collection = models.ForeignKey(Collection)
+
+    class Meta:
+        ordering = ['title']
+
+    def __unicode__(self):
+        return self.title