add faqs to homepage
This commit is contained in:
parent
3519da52aa
commit
7f7e5baa98
6 changed files with 113 additions and 1 deletions
32
hub/services/migrations/0018_websitefaq.py
Normal file
32
hub/services/migrations/0018_websitefaq.py
Normal file
|
@ -0,0 +1,32 @@
|
|||
# Generated by Django 5.1.5 on 2025-03-06 10:18
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("services", "0017_service_tagline"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name="WebsiteFaq",
|
||||
fields=[
|
||||
(
|
||||
"id",
|
||||
models.BigAutoField(
|
||||
auto_created=True,
|
||||
primary_key=True,
|
||||
serialize=False,
|
||||
verbose_name="ID",
|
||||
),
|
||||
),
|
||||
("question", models.CharField(max_length=200)),
|
||||
("answer", models.TextField()),
|
||||
],
|
||||
options={
|
||||
"ordering": ["question"],
|
||||
},
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue