--- /dev/null
+<html>
+<head>
+ <title>Siedlerverein-Verwaltung by WagnerTech UG</title>
+</head>
+<body>
+<h1>Siedlerverein-Verwaltung by WagnerTech UG</h1>
+<p>Wählen Sie Ihren Verein:</p>
+<p><a href="svbal/">Siedlervereinigung Berg am Laim</a></p>
+</body>
+</html>
--- /dev/null
+<html>
+<head>
+ <title>Siedlerverein-Verwaltung by WagnerTech UG</title>
+</head>
+<body>
+<h1>Siedlerverein-Verwaltung by WagnerTech UG</h1>
+<p>Verfügbare Funktionen für {{verein}}:</p>
+<p><a href="ausweis">Ausweiserstellung</a></p>
+<p><a href="kassenbrief">Erstellung der Kassenbriefe</a></p>
+</body>
+</html>
--- /dev/null
+from django.contrib import admin
+
+# Register your models here.
--- /dev/null
+from django.apps import AppConfig
+
+
+class KassenbriefConfig(AppConfig):
+ name = 'kassenbrief'
--- /dev/null
+from django.db import models
+
+# Create your models here.
--- /dev/null
+from django.test import TestCase
+
+# Create your tests here.
--- /dev/null
+from django.urls import path
+
+from . import views
+
+urlpatterns = [
+ path('', views.index),
+]
\ No newline at end of file
--- /dev/null
+from django.http import HttpResponse
+from django.shortcuts import render
+
+# Create your views here.
+
+def index(request):
+
+ return HttpResponse("NYI")