Hello,

I found this very interesting post :

http://groups.google.com/group/django-users/browse_frm/thread/bb7f406bffd697f5

Then I tried to apply this modele to mine, but I have trouble !

Here is the class :

#############################################################################
class VideoSeq(models.Model):
        video = models.ForeignKey(Video,edit_inline=models.STACKED,
db_index=True)
        Title =
models.CharField(maxlength=200,null=False,blank=False,core=True)
        Number = models.IntegerField(maxlength=2,db_index=True)
        Duration = models.IntegerField(maxlength=2,db_index=True)
        has_lang = models.CharField(maxlength=2,null=False,
db_index=True,choices=HAS_LANG_CHOICES,)
        has_thumb = models.BooleanField(db_index=True)
        is_done = models.BooleanField(db_index=True)
        updated_at = models.DateTimeField(auto_now=True)

        def delete(self):
                #
                flv_path = "%s/seq%s.flv" % ("/home/vids",self.Number)
                img_path = "%s/seq%s.jpg" % ("/home/vids",self.Number)
                #
                if os.path.isfile(flv_path):
                        os.remove(flv_path)
                #
                if os.path.isfile(img_path):
                        os.remove(img_path)
                #
                super(VideoSeq, self).delete()
        #
        def __str__(self):
                return "Seq %s" % (self.Number)

        class Admin:
          pass
##############################################################################

I don't understand why I have the following errors while using it :

name 'flv_path' is not defined
name 'img_path' is not defined
name 'VideoSeq' is not defined

Any advice is appreciate :)

Regards,

xav


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to