mirror of
https://github.com/Mistake35/Cedar-Django.git
synced 2026-07-18 00:21:14 +10:00
- Fixed community edit audit logs being created even if the user owns the community. - Simple ban page that shows you the reason, expiration date, and time left. - Removing unused models - other small changes
16 lines
493 B
HTML
16 lines
493 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>You are banned</title>
|
|
</head>
|
|
<body>
|
|
<h1>You are banned from {{ brand_name }}.</h1>
|
|
{% if ban.reason %}<p>Reason: {{ ban.reason }}</p>{% endif %}
|
|
<p>Your ban will expire on {{ ban.expiry_date }}</p>
|
|
<p>{{ ban.expiry_date|timeuntil }} remaining.</p>
|
|
</body>
|
|
</html>
|