Schule als Staat Projekt Web, Dokumente, etc.
25개 이상의 토픽을 선택하실 수 없습니다. 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')