mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-04-19 08:55:12 +00:00
9 lines
275 B
Python
9 lines
275 B
Python
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) |