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.
9 lines
229 B
9 lines
229 B
from django.db import models
|
|
|
|
|
|
class feedbackModel(models.Model):
|
|
nazev = models.CharField(max_length=100)
|
|
zprava = models.TextField(max_length=10000)
|
|
|
|
def __str__(self):
|
|
return self.nazev + " " + self.zprava
|