create sitemanagement project and dynamic faqs
This commit is contained in:
14
backend/sitemanagement/models.py
Normal file
14
backend/sitemanagement/models.py
Normal file
@@ -0,0 +1,14 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user