Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@manuel14
Created September 14, 2013 19:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manuel14/6565013 to your computer and use it in GitHub Desktop.
Save manuel14/6565013 to your computer and use it in GitHub Desktop.
ladero
class Noticia(models.Model):
titulo = models.TextField()
texto = models.TextField(help_text='Redacta la Noticia')
autor = models.TextField(verbose_name='Autor')
#imagen = models.ImageField(upload_to='rrpp', verbose_name='imagen')
#tiempo_registro = models.DateTimeField(auto_now=True)
usuario = models.ForeignKey(User)
def __unicode__(self):
return self.titulo
def guardar_noticia(request):
if request.method=='POST':
titulo = request.POST['titulo']
autor = request.POST['autor']
texto = request.POST['texto']
noticia = Noticia(titulo, autor, texto)
noticia.save()
return HttpResponseRedirect('/')
else:
return HttpResponseRedirect('/')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment