Skip to content

Instantly share code, notes, and snippets.

#******************models.py**************************************************#
from django.db import models
from django.contrib.auth.models import User
class Question(models.Model):
question = models.TextField()
def __str__(self):
return self.question