Skip to content

Instantly share code, notes, and snippets.

@fitoria
Created December 7, 2011 01:22
Show Gist options
  • Save fitoria/1440967 to your computer and use it in GitHub Desktop.
Save fitoria/1440967 to your computer and use it in GitHub Desktop.
#models.py de ejemplo resumido para el blog
class Noticia(models.Model):
'''Modelo simple de noticia'''
titulo = models.CharField(max_length=100)
cuerpo = models.TextField()
fecha = models.DatetimeField()
imagen = models.ImageField(upload_to="heaven")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment