示例#1
0
def latest_stories(count=3, img_width=100):
    return latest_context(
            Story.objects.exclude(source__relation_type='connected'), 
            count, img_width, '-weight')
def latest_organizations(count=3, img_width=100):
    return latest_context(Organization.objects.all(), count, img_width)
示例#3
0
def latest_organizations(count=3, img_width=100):
    return latest_context(Organization.objects.all(), count, img_width)
示例#4
0
def latest_projects(count=3, img_width=100):
    return latest_context(Project.objects.all(), count, img_width)
示例#5
0
def latest_projects(count=3, img_width=100):
    return latest_context(Project.objects.all(), count, img_width)
示例#6
0
def latest_stories(count=3, img_width=100):
    return latest_context(
        Story.objects.exclude(source__relation_type='connected'), count,
        img_width, '-weight')