Ver Mensaje Individual
  #1 (permalink)  
Antiguo 01/08/2013, 22:45
minimal
 
Fecha de Ingreso: diciembre-2011
Mensajes: 408
Antigüedad: 12 años, 4 meses
Puntos: 18
django problemas a la hora de generar fechas en un sitemap

hola tengo algunos problemas con mi sitio en django

estoy generando los sitemaps pero tengo un probelma al formatear la fecha
aca el sitemap

Código XML:
Ver original
  1. <!-- sitemap-generator-url="http://www.arnebrachhold.de" sitemap-generator-version="3.2.9" -->
  2. <!-- generated-on="11 July 2013 10:31" -->
  3. <urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">{% if itemlist|length > 0 %}
  4. <url>
  5.     <loc>{{SITE_DOMAIN}}</loc>
  6.     <lastmod>{{LASTUPDATE|date:"Y-m-dTH:i:s"}}</lastmod>
  7.     <changefreq>daily</changefreq>
  8.     <priority>1.0</priority>
  9. </url>{% endif %}