app/soc/models/timeline.py
changeset 1475 22b63ab59b27
parent 1308 35b75ffcbb37
--- a/app/soc/models/timeline.py	Mon Feb 23 18:26:00 2009 +0000
+++ b/app/soc/models/timeline.py	Mon Feb 23 18:27:14 2009 +0000
@@ -26,16 +26,13 @@
 
 from django.utils.translation import ugettext
 
-from soc.models import base
+from soc.models import linkable
 
 
-class Timeline(base.ModelWithFieldAttributes):
+class Timeline(linkable.Linkable):
   """The Timeline Model, representing the timeline for a Program.
   """
 
-  scope_path = db.StringProperty(required=True,
-      verbose_name=ugettext('Scope Path'))
-
   program_start = db.DateTimeProperty(
       verbose_name=ugettext('Program Start date'))