mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-06-28 20:50:07 +02:00
Initial commit
This commit is contained in:
commit
ed55724808
2505 changed files with 1136655 additions and 0 deletions
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)
|
Loading…
Add table
Add a link
Reference in a new issue