Clean images and case insensitive nav.
This commit is contained in:
parent
6464703381
commit
288759146c
7 changed files with 59 additions and 4 deletions
18
wedding_site/primary/migrations/0010_page_prority.py
Normal file
18
wedding_site/primary/migrations/0010_page_prority.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 5.0.2 on 2024-02-18 09:58
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('primary', '0009_page_pretty_name'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='page',
|
||||
name='prority',
|
||||
field=models.IntegerField(default=0),
|
||||
),
|
||||
]
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 5.0.2 on 2024-02-18 10:02
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('primary', '0010_page_prority'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='page',
|
||||
old_name='prority',
|
||||
new_name='priority',
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue