diff options
author | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2009-11-23 15:56:35 +0000 |
---|---|---|
committer | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2009-11-23 15:56:35 +0000 |
commit | 526fbe767130b4dedd75841969808fe750afa22e (patch) | |
tree | dae304cd7c26f58de184366998692f4007d18db5 /apps/blog/signals.py | |
parent | 4ac2e8c9c7126e21c708fd04bc14cf8143e1c17f (diff) |
redesign tentatively complete
Diffstat (limited to 'apps/blog/signals.py')
-rw-r--r-- | apps/blog/signals.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/blog/signals.py b/apps/blog/signals.py index 0f3c9c4..41025f1 100644 --- a/apps/blog/signals.py +++ b/apps/blog/signals.py @@ -8,7 +8,7 @@ from locations.models import Region,Country def update_recent(sender, instance, signal, *args, **kwargs): # Update recent entries static file model = get_model('blog', 'entry') - qs = {'object_list': model.objects.filter(status__exact=1).order_by('-pub_date')[1:6]} + qs = {'object_list': model.objects.filter(status__exact=1).order_by('-pub_date')[1:5]} c = Context(qs) t = render_to_string('includes/recent_entries_template.html',c) fpath = '%s%s' %(settings.PROJ_ROOT,'templates/includes/recent_entries.html') |