'url': author.get_absolute_url(),
'img': get_thumbnail(author.photo, '72x72', crop='top').url if author.photo else '',
'slug': author.slug,
+ 'id': author.id,
}
for author in authors[:limit - len(data)]
])
'label': tag.name,
'url': tag.get_absolute_url(),
'slug': tag.slug,
+ 'id': tag.id,
}
for tag in tags[:limit - len(data)]
])