This commit is contained in:
Jannis Portmann 2023-02-19 12:29:08 +01:00
parent 9278962fb4
commit acc7f754da
7 changed files with 18 additions and 0 deletions

0
pflaenzli/__init__.py Normal file
View file

3
pflaenzli/admin.py Normal file
View file

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

6
pflaenzli/apps.py Normal file
View file

@ -0,0 +1,6 @@
from django.apps import AppConfig
class PflaenzliConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "pflaenzli"

View file

3
pflaenzli/models.py Normal file
View file

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

3
pflaenzli/tests.py Normal file
View file

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

3
pflaenzli/views.py Normal file
View file

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