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

12 行
282B

  1. from django.db import models
  2. # Create your models here.
  3. class Banned(models.Model):
  4. ip_address = models.CharField('IP Adresse', max_length=50)
  5. reason = models.TextField('Grund')
  6. class Meta:
  7. verbose_name = 'Verbannte'
  8. verbose_name_plural = 'Verbannte'