Include last modified date in sitemap

This commit is contained in:
Magnus Hagander
2012-01-14 16:55:53 +01:00
parent ad895a7661
commit 78ab264578
4 changed files with 16 additions and 10 deletions

View File

@ -12,7 +12,7 @@ class Version(PgModel, models.Model):
relnotes = models.CharField(max_length=32, null=False, blank=False)
current = models.BooleanField(null=False, blank=False, default=False)
supported = models.BooleanField(null=False, blank=False, default=True)
docsloaded = models.DateTimeField(null=True, blank=True, help_text="The timestamp of the latest docs load. Really only used for developer docs for now, but set for all of them.")
docsloaded = models.DateTimeField(null=True, blank=True, help_text="The timestamp of the latest docs load. Used to control indexing and info on developer docs.")
firstreldate = models.DateField(null=False, blank=False, help_text="The date of the .0 release in this tree")
eoldate = models.DateField(null=False, blank=False, help_text="The planned EOL date for this tree")