Make scripts/objects lists use EvMore. Change EvMore to not justify by default.
This commit is contained in:
parent
b5aee2c41e
commit
69d85bd184
221 changed files with 2190 additions and 6810 deletions
|
|
@ -15,10 +15,7 @@ class Migration(migrations.Migration):
|
|||
(
|
||||
"id",
|
||||
models.AutoField(
|
||||
verbose_name="ID",
|
||||
serialize=False,
|
||||
auto_created=True,
|
||||
primary_key=True,
|
||||
verbose_name="ID", serialize=False, auto_created=True, primary_key=True
|
||||
),
|
||||
),
|
||||
(
|
||||
|
|
@ -50,9 +47,7 @@ class Migration(migrations.Migration):
|
|||
(
|
||||
"db_lock_storage",
|
||||
models.TextField(
|
||||
help_text="normally view:all().",
|
||||
verbose_name="locks",
|
||||
blank=True,
|
||||
help_text="normally view:all().", verbose_name="locks", blank=True
|
||||
),
|
||||
),
|
||||
("db_staff_only", models.BooleanField(default=False)),
|
||||
|
|
@ -65,10 +60,7 @@ class Migration(migrations.Migration):
|
|||
),
|
||||
),
|
||||
],
|
||||
options={
|
||||
"verbose_name": "Help Entry",
|
||||
"verbose_name_plural": "Help Entries",
|
||||
},
|
||||
options={"verbose_name": "Help Entry", "verbose_name_plural": "Help Entries"},
|
||||
bases=(models.Model,),
|
||||
)
|
||||
]
|
||||
|
|
|
|||
|
|
@ -12,9 +12,7 @@ class Migration(migrations.Migration):
|
|||
model_name="helpentry",
|
||||
name="db_entrytext",
|
||||
field=models.TextField(
|
||||
blank=True,
|
||||
help_text="the main body of help text",
|
||||
verbose_name="help entry",
|
||||
blank=True, help_text="the main body of help text", verbose_name="help entry"
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
|
|
@ -31,10 +29,7 @@ class Migration(migrations.Migration):
|
|||
model_name="helpentry",
|
||||
name="db_key",
|
||||
field=models.CharField(
|
||||
help_text="key to search for",
|
||||
max_length=255,
|
||||
unique=True,
|
||||
verbose_name="help key",
|
||||
help_text="key to search for", max_length=255, unique=True, verbose_name="help key"
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue