#162 Info über qivip

This commit is contained in:
ben8
2025-11-27 19:05:14 +01:00
parent bd3c1555ae
commit 9c06c81cb1
8 changed files with 123 additions and 5 deletions

View File

@@ -3,4 +3,8 @@ from django.db import models
# Create your models here.
class QivipFaq(models.Model):
question = models.TextField(max_length=200)
answer = models.TextField(max_length=1000)
answer = models.TextField(max_length=1000)
class QivipDescription(models.Model): # Was kann man mit qivip machen ...
title = models.TextField(max_length=200, help_text="Funktion von qivip")
description= models.TextField(max_length=1000, help_text="Beschreibung der Funktion von qivip")