forked from 00dani/lemoncurry
13 lines
277 B
Python
13 lines
277 B
Python
from django.contrib import sitemaps
|
|
from .models import Entry
|
|
|
|
|
|
class EntriesSitemap(sitemaps.Sitemap):
|
|
def items(self):
|
|
return Entry.objects.all()
|
|
|
|
def lastmod(self, entry):
|
|
return entry.updated
|
|
|
|
def location(self, entry):
|
|
return entry.url
|