~include('../site/admin.header.tmpl', 'Principaux contributeurs')

Nombre de dépêches publiées

~list(~get('database'), "SELECT user_id,count(*) as count FROM news WHERE state=~get('state_ok') AND user_id!=1 GROUP BY user_id ORDER BY count DESC LIMIT 20", 'LF', ' ')

Nombre d'articles publiés

~list(~get('database'), "SELECT user_id,count(*) as count FROM articles WHERE state=~get('state_ok') AND user_id!=1 GROUP BY user_id ORDER By count DESC LIMIT 20", 'LF', ' ')

Nombre de sujets dans le forum

~list(~get('database'), "SELECT user_id,count(*) as count FROM forums_data WHERE state=~get('state_ok') AND user_id!=1 GROUP BY user_id ORDER By count DESC LIMIT 20", 'LF', ' ')

Nombre de concerts publiés

~list(~get('database'), "SELECT user_id,count(*) as count FROM dates WHERE state=~get('state_ok') AND user_id!=1 GROUP BY user_id ORDER By count DESC LIMIT 20", 'LF', ' ')

Nombre d'évènements publiés

~list(~get('database'), "SELECT user_id,count(*) as count FROM events WHERE state=~get('state_ok') AND user_id!=1 GROUP BY user_id ORDER By count DESC LIMIT 20", 'LF', ' ')

Nombre de blogs publiés

~list(~get('database'), "SELECT user_id,count(*) as count FROM users_journal WHERE state=~get('state_ok') AND user_id!=1 GROUP BY user_id ORDER By count DESC LIMIT 20", 'LF', ' ')

Nombre de commentaires postés

~list(~get('database'), "SELECT user_id,count(*) as count FROM comments WHERE user_id!=1 GROUP BY user_id ORDER BY count DESC LIMIT 20",'LF', ' ')
~include('../site/admin.footer.tmpl')