Example #1
0
File: models.py Project: d0my/sew
 def save(self, *args, **kwargs):
     # NOTA: mejorar sistemas de URLs amigables
     if self.url == "":
         self.url = slughifi(self.titulo + '-' +
                             unicode(self.publicacion)[0:10])
     else:
         self.url = slughifi(self.url)
     super(Articulo, self).save(*args, **kwargs)
Example #2
0
File: models.py Project: d0my/sew
 def save(self, *args, **kwargs):
     # NOTA: mejorar sistemas de URLs amigables
     self.url = slughifi(self.url)
     super(Blog, self).save(*args, **kwargs)