{% extends "admin/base_site.html" %}
{% load i18n admin_urls %}
{% block bodyclass %}dashboard{% endblock %}
{% block extrastyle %}
{{ block.super }}
{% endblock %}
{% block breadcrumbs %}
Blocked Logins
Here is a list of IP's and usernames that are blocked
Blocked IP's
IP | Action |
{% for block in blocked_ip_list %}
{{block}} |
|
{% empty %}
No IP's |
{% endfor %}
Blocked Usernames
Usernames | Action |
{% for block in blocked_username_list %}
{{block}} |
|
{% empty %}
No Username's |
{% endfor %}
{% endblock content %}