Skip to content

Instantly share code, notes, and snippets.

@fitoria
Created December 7, 2011 01:16
Show Gist options
  • Save fitoria/1440931 to your computer and use it in GitHub Desktop.
Save fitoria/1440931 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()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment