Keep number of avatars in Customer Care stats to a maximum of 16 (4x4).

This commit is contained in:
Fred Wenzel 2010-12-02 14:48:26 -08:00
Родитель 23934a28cc
Коммит aa6b61a068
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -102,6 +102,9 @@ def landing(request):
period = contrib[1]
if not contributor_stats.get(period):
contributor_stats[period] = []
elif len(contributor_stats[period]) == 16:
# Show a max. of 16 people.
continue
contributor_stats[period].append({
'name': contrib[2],