You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
344 B
11 lines
344 B
from django.db import models
|
|
from django.contrib.auth.models import User
|
|
|
|
|
|
#Sinnestau.de models
|
|
class Termin(models.Model):
|
|
titel = models.CharField(max_length=40)
|
|
bild = models.CharField(max_length=255,default="termin.jpg")
|
|
teaser = models.CharField(max_length=255)
|
|
text = models.TextField()
|
|
date = models.DateField()
|
|
|