__section__
default
__description__
This template accepts user data and site data and determines if a user
is currently eligible to metamoderate. If a user is not eligible, this
template will return a message describing why, if a user is eligible,
this template returns "Eligible".

* user_count = number of users in system
* last = hashref of last metamoderation for current user
__title__

__page__
metamod
__lang__
en_US
__name__
isEligible
__template__
[% IF user.is_anon %]
You are not logged in.
[% ELSIF user.uid > (user_count * 9) # user_count * constants.m2_userpercentage %]
You haven't been a [% constants.sitename %] user long enough.
[% ELSIF user.karma < 0 %]
Your karma is insufficient for this task.
[% ELSIF last.lastmm == '0' %]
You have recently meta moderated.
[% ELSE %]
Eligible
[% END %]
__seclev__
1000
