Schule als Staat Projekt Web, Dokumente, etc.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

12 wiersze
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'