Schule als Staat Projekt Web, Dokumente, etc.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
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')