-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makes more clear the is_enable function in themes (#11631)
* Makes more clear the is_enable function in themes * Update models.py * Update 0015_alter_geonodethemecustomization_is_enabled.py * fix format
- Loading branch information
1 parent
da856b5
commit f1a905b
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
geonode/themes/migrations/0015_alter_geonodethemecustomization_is_enabled.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.21 on 2023-10-23 10:20 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('geonode_themes', '0014_auto_20220214_0910'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='geonodethemecustomization', | ||
name='is_enabled', | ||
field=models.BooleanField(default=False, help_text='Set this theme as the current global theme for GeoNode. This will disable the current theme (if any)'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters