Set up members app with initial structure and registered it in settings

This commit is contained in:
2026-01-03 12:46:57 +01:00
parent 8f566b2e5e
commit 63ad906557
8 changed files with 19 additions and 1 deletions

View File

@@ -45,7 +45,8 @@ INSTALLED_APPS = [
"django.contrib.staticfiles",
"constance",
"tailwind",
"theme.apps.ThemeConfig", # Tailwind theme app
"theme.apps.ThemeConfig",
"members.apps.MembersConfig", # Tailwind theme app
]
MIDDLEWARE = [

0
members/__init__.py Normal file
View File

3
members/admin.py Normal file
View File

@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
members/apps.py Normal file
View File

@@ -0,0 +1,5 @@
from django.apps import AppConfig
class MembersConfig(AppConfig):
name = "members"

View File

3
members/models.py Normal file
View File

@@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
members/tests.py Normal file
View File

@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
members/views.py Normal file
View File

@@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.