429.3.2
by franku
each app has his own sitemap.py |
1 |
from django.contrib.sitemaps import Sitemap |
2 |
from pybb.models import Forum |
|
3 |
||
4 |
||
5 |
class ForumSitemap(Sitemap): |
|
6 |
changefreq = 'monthly' |
|
7 |
priority = 0.5 |
|
8 |
||
9 |
def items(self): |
|
10 |
return Forum.objects.all() |
|
11 |
||
12 |
def lastmod(self, obj): |
|
13 |
return obj.updated |