Initial commit

This commit is contained in:
Eduardo Silva
2024-02-14 16:36:01 -03:00
commit ed55724808
2505 changed files with 1136655 additions and 0 deletions
View File
+3
View File
@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.
+6
View File
@@ -0,0 +1,6 @@
from django.apps import AppConfig
class UserManagerConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'user_manager'
View File
+3
View File
@@ -0,0 +1,3 @@
from django.db import models
# Create your models here.
+3
View File
@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.
+9
View 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)