{% extends "admin/base.html" %} {% block admin_content %}
| User | Votes in Campaign | First Vote | Last Vote | Suspicion Level | Account Age | Current Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ user.username }} | {{ participant.votes_in_campaign }} | {{ participant.first_vote_at.strftime('%Y-%m-%d %H:%M') }} | {{ participant.last_vote_at.strftime('%Y-%m-%d %H:%M') }} | {{ participant.suspicion_level.title() }} | {% if user.join_date %} {{ ((campaign.detected_at - user.join_date).days) }} days {% else %} Unknown {% endif %} |
Checking...
|
View User |
No participants found.
{% endif %}| User | Reason | Created | Expires | Status | Actions |
|---|---|---|---|---|---|
| {{ timeout.user.username }} | {{ timeout.reason }} | {{ timeout.created_at.strftime('%Y-%m-%d %H:%M') }} | {{ timeout.expires_at.strftime('%Y-%m-%d %H:%M') }} | {% if timeout.is_currently_active() %} Active {% else %} Expired {% endif %} | Manage |
No related timeouts.
{% endif %}