15 lines
316 B
Python
15 lines
316 B
Python
from django.db import models
|
|
|
|
class FAQ (models.Model):
|
|
title = models.CharField(max_length=250)
|
|
content = models.CharField(max_length=800)
|
|
|
|
class Meta:
|
|
verbose_name = 'FAQ'
|
|
verbose_name_plural = 'FAQs'
|
|
ordering = ['id']
|
|
|
|
def __str__(self):
|
|
return self.title
|
|
|