Schule als Staat Projekt Web, Dokumente, etc.
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.

10 lines
328B

  1. from django.db import models
  2. # Create your models here.
  3. class Entry(models.Model):
  4. title = models.CharField(max_length=100)
  5. pub_date = models.DateTimeField('Veröffentlichungsdatum')
  6. image = models.ImageField('Vorschaubild', upload_to='thumbnails')
  7. element = models.FileField('Datei', upload_to='datastorage')