Created
December 7, 2011 01:16
-
-
Save fitoria/1440931 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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