diff options
author | luxagraf <sng@luxagraf.net> | 2011-05-09 16:22:25 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2011-05-09 16:22:25 -0400 |
commit | 5bb96d4c2c8b42474953ca29d2422b3be60da25b (patch) | |
tree | 959adb3e57c0baf54f56253e5347f45960439b97 /apps/projects/models | |
parent | 261b92d06de346cd5a6d18b9bdf38ee7084960ab (diff) |
updated styles and templates for revamped design
Diffstat (limited to 'apps/projects/models')
-rw-r--r-- | apps/projects/models/base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/projects/models/base.py b/apps/projects/models/base.py index a59c499..debb776 100644 --- a/apps/projects/models/base.py +++ b/apps/projects/models/base.py @@ -65,8 +65,8 @@ class Project(models.Model): class ProjectSitemap(Sitemap): - changefreq = "never" - priority = 1.0 + changefreq = "monthly" + priority = 0.5 def items(self): return Project.objects.filter(status=1) |