Merge pull request #109 from constantine2nd/master

feature/Query users by locked status
This commit is contained in:
Simon Redfern 2020-05-18 10:47:05 +02:00 committed by GitHub
commit 7d62e2db49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,3 @@
<a href="?locked_status=active&role_name={{ request.GET.role_name }}" class="btn btn-default{% if active_locked_status_active %} active{% endif %}">Active</a>
<a href="?locked_status=locked&role_name={{ request.GET.role_name }}" class="btn btn-default{% if locked_status_locked %} active{% endif %}">Locked</a>
<a href="?locked_status=all&role_name={{ request.GET.role_name }}" class="btn btn-default{% if active_locked_status_all %} active{% endif %}">All</a>
<a href="?locked_status=active&role_name={{ request.GET.role_name }}" class="btn btn-default{% if locked_status == "active" %} active{% endif %}">Active</a>
<a href="?locked_status=locked&role_name={{ request.GET.role_name }}" class="btn btn-default{% if locked_status == "locked" %} active{% endif %}">Locked</a>
<a href="?locked_status=all&role_name={{ request.GET.role_name }}" class="btn btn-default{% if locked_status == "all" %} active{% endif %}">All</a>