mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-08-26 13:21:14 +00:00
Initial commit
This commit is contained in:
9
user_manager/views.py
Normal file
9
user_manager/views.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django.shortcuts import render
|
||||
from django.contrib.auth.decorators import login_required
|
||||
|
||||
|
||||
@login_required
|
||||
def view_user_list(request):
|
||||
page_title = 'User Manager'
|
||||
context = {'page_title': page_title}
|
||||
return render(request, 'user_manager/list.html', context)
|
Reference in New Issue
Block a user