Hello, I think that the atom feeder is not working properly.
The subtitle item is not shown.
Here is the code:
class UltimasNoticias(Feed):
feed_type = Atom1Feed
description_template = "noticias/sindicacion_resumen.html"
title = "Title of my site"
link = "http://www.mysite.com/"
subtitle = u"Subtitle I want"
def items(self):
return Noticia.objects.filter(visible=True).order_by('-
fecha_inicio_publicacion')[:10]
but the subtilte element isn't shown in the code xml.
I have tried to set the element logo and other atom items but still
not working.
Am I doing something wrong?
Thank you.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---